Files
hoppscotch/packages/hoppscotch-common/src/helpers/utils/date.ts
2022-12-02 03:05:35 -05:00

11 lines
247 B
TypeScript

export function shortDateTime(date: string | number | Date) {
return new Date(date).toLocaleString("en-US", {
year: "numeric",
month: "short",
day: "numeric",
hour: "numeric",
minute: "numeric",
second: "numeric",
})
}