(atMs: number)
| 65 | // --------------------------------------------------------------------------- |
| 66 | |
| 67 | const utcDay = (atMs: number): string => new Date(atMs).toISOString().slice(0, 10); |
| 68 | |
| 69 | /** Rejects the wrong shape and impossible dates alike (`2026-02-31` round-trips as March). */ |
| 70 | function isValidDay(day: string): boolean { |
no outgoing calls
no test coverage detected