(s: string)
| 872 | } |
| 873 | |
| 874 | function addCommas(s: string): string { |
| 875 | return s.replace(/\B(?=(\d{3})+(?!\d))/g, ","); |
| 876 | } |
| 877 | |
| 878 | function humanReadable(n: number): string { |
| 879 | return n.toFixed(3); |
no outgoing calls
no test coverage detected
searching dependent graphs…