(value: string)
| 2 | export const DAY_MS = 86_400_000 |
| 3 | |
| 4 | export function parseIsoDate(value: string): Date { |
| 5 | return new Date(`${value}T00:00:00.000Z`) |
| 6 | } |
| 7 | |
| 8 | export function toIsoDate(date: Date): string { |
| 9 | return date.toISOString().slice(0, 10) |
no outgoing calls
no test coverage detected