(date: Date)
| 126 | |
| 127 | /** ISO 8601 week-year (may differ from the calendar year at year boundaries). */ |
| 128 | export function getISOWeekYear(date: Date): number { |
| 129 | return isoWeekParts(date).year |
| 130 | } |
| 131 | |
| 132 | /** |
| 133 | * Inverse of {@link getISOWeek}: the Monday (local midnight) of the given ISO |
no test coverage detected