(n: number)
| 9 | }; |
| 10 | |
| 11 | const formatInt = (n: number): string => new Intl.NumberFormat(undefined).format(Math.max(0, Math.floor(n))); |
| 12 | |
| 13 | const setText = (id: string, text: string): void => { |
| 14 | const el = document.getElementById(id); |
no outgoing calls
no test coverage detected