(epochMs: number)
| 62 | |
| 63 | /** Absolute date, for the created column. */ |
| 64 | export const formatAdminDate = (epochMs: number): string => |
| 65 | new Intl.DateTimeFormat(undefined, { month: "short", day: "numeric", year: "numeric" }).format( |
| 66 | new Date(epochMs), |
| 67 | ); |
| 68 | |
| 69 | // ── Identity ──────────────────────────────────────────────────────────────── |
| 70 |