(from: string)
| 493 | } |
| 494 | |
| 495 | function weeklyLabel(from: string) { |
| 496 | return `Week of ${formatDate(from)}`; |
| 497 | } |
| 498 | |
| 499 | function formatDateRange(from: string, to: string) { |
| 500 | return `${formatDate(from)} - ${formatDate(to)}`; |
no test coverage detected