* Format a number with commas
(n: number)
| 272 | * Format a number with commas |
| 273 | */ |
| 274 | function formatNumber(n: number): string { |
| 275 | return n.toLocaleString(); |
| 276 | } |
| 277 | |
| 278 | /** |
| 279 | * Format duration in milliseconds to human readable |
no outgoing calls
no test coverage detected