majic / src /utils /formatDate.ts
nolual's picture
Upload 55 files
0c20ea8
raw
history blame
No virus
371 Bytes
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;
}