18 lines
353 B
TypeScript
18 lines
353 B
TypeScript
export function shortDateTime(
|
|
date: string | number | Date,
|
|
includeTime: boolean = true
|
|
) {
|
|
return new Date(date).toLocaleString("en-US", {
|
|
year: "numeric",
|
|
month: "short",
|
|
day: "numeric",
|
|
...(includeTime
|
|
? {
|
|
hour: "numeric",
|
|
minute: "numeric",
|
|
second: "numeric",
|
|
}
|
|
: {}),
|
|
})
|
|
}
|