(value: number)
| 221 | } |
| 222 | |
| 223 | function formatFraction(value: number): string { |
| 224 | return `${(value * 100).toFixed(1)}%`; |
| 225 | } |
| 226 | |
| 227 | function collapseWhitespace(value: string): string { |
| 228 | return value.replace(/\s+/g, " ").trim(); |
no outgoing calls
no test coverage detected