my-website-v2/frontend/lib/convertUtc.ts

15 lines
420 B
TypeScript

export const convertUtc = (utcTimestamp: string): string => {
const utcTimeZone: string = Intl.DateTimeFormat().resolvedOptions().timeZone;
return new Date(utcTimestamp).toLocaleString("en-US", {
day: "numeric",
month: "numeric",
year: "numeric",
hour: "numeric",
minute: "numeric",
hourCycle: "h24",
timeZone: utcTimeZone,
});
};
const validateTime = (parsedUtcTimestamp: any) => {};