blob: 016c97a69483ede8160e0f0154481d9922b96197 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
export function niceDate(date: number | string | Date) {
const d = new Date(date)
return `${d.toLocaleDateString('en-us', {
year: 'numeric',
month: 'short',
day: 'numeric',
})} at ${d.toLocaleTimeString(undefined, {
hour: 'numeric',
minute: '2-digit',
})}`
}
|