(startIso: string, endIso: string)
| 22 | } |
| 23 | |
| 24 | function differenceInUtcDaysInclusive(startIso: string, endIso: string): number { |
| 25 | const start = parseIsoDate(startIso) |
| 26 | const end = parseIsoDate(endIso) |
| 27 | return Math.floor((end.getTime() - start.getTime()) / 86400000) + 1 |
| 28 | } |
| 29 | |
| 30 | function splitIsoRangeIntoChunksInclusive( |
| 31 | startIso: string, |
no test coverage detected