[examples/openspending] - openspending v0.2
This commit is contained in:
8
examples/openspending/utils/formatDate.tsx
Normal file
8
examples/openspending/utils/formatDate.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
export const formatDate = (date: string, locales = "en-US") => {
|
||||
const options: Intl.DateTimeFormatOptions = {
|
||||
year: "numeric",
|
||||
month: "long",
|
||||
day: "numeric",
|
||||
};
|
||||
return new Date(date).toLocaleDateString(locales, options);
|
||||
};
|
||||
Reference in New Issue
Block a user