(d: Date)
| 88 | } |
| 89 | |
| 90 | function isoWeekStr(d: Date): string { |
| 91 | return `${getISOWeekYear(d)}-W${String(getISOWeek(d)).padStart(2, '0')}` |
| 92 | } |
| 93 | |
| 94 | function monthLabel(d: Date): string { |
| 95 | return d.toLocaleDateString(undefined, { month: 'long', year: 'numeric' }) |
no test coverage detected