11 lines
247 B
TypeScript
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",
|
|
})
|
|
}
|