(ts: number | null)
| 304 | } |
| 305 | |
| 306 | export function formatTime(ts: number | null): string { |
| 307 | if (!ts) return '—'; |
| 308 | return new Date(ts).toLocaleTimeString('en-US', { hour: '2-digit', minute: '2-digit' }); |
| 309 | } |
| 310 | |
| 311 | /* ---- HTML builder helpers ---- */ |
| 312 | export function statCard(label: string, value: string, accent: string): string { |
no outgoing calls
no test coverage detected