Spaces:
Running
Running
export function formatDatetime(isoDate: string): string { | |
const date = new Date(isoDate); | |
const options: Intl.DateTimeFormatOptions = { | |
year: "numeric", | |
month: "long", | |
day: "numeric", | |
hour: "numeric", | |
minute: "numeric", | |
second: "numeric", | |
}; | |
const formattedDate = new Intl.DateTimeFormat("en-US", options).format(date); | |
return formattedDate; | |
} | |