File size: 371 Bytes
0c20ea8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
export function formatDate(inputDate: string): string {
const date = new Date(inputDate);
const options: Intl.DateTimeFormatOptions = {
year: "numeric",
month: "long",
day: "2-digit",
hour: "numeric",
minute: "numeric",
timeZoneName: "short",
};
const formattedDate = date.toLocaleDateString("en-US", options);
return formattedDate;
}
|