Spaces:
Running
Running
File size: 381 Bytes
17fabdd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
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;
}
|