* Format a number with commas
(n: number)
| 228 | * Format a number with commas |
| 229 | */ |
| 230 | function formatNumber(n: number): string { |
| 231 | return n.toLocaleString(); |
| 232 | } |
| 233 | |
| 234 | /** |
| 235 | * Format duration in milliseconds to human readable |
no outgoing calls
no test coverage detected