(value: number)
| 92 | } |
| 93 | |
| 94 | function formatPercent(value: number): string { |
| 95 | if (!Number.isFinite(value)) return '0%'; |
| 96 | return `${Math.round(value * 100)}%`; |
| 97 | } |
| 98 | |
| 99 | function summarizeFilter(filter: DateFilter): string { |
| 100 | const parts: string[] = []; |
no outgoing calls
no test coverage detected