(input: string)
| 24 | } |
| 25 | |
| 26 | function removeNotNumbers(input: string): string { |
| 27 | return input.replace(/[^0-9]/g, ''); |
| 28 | } |
| 29 | |
| 30 | function capitalize(input: string): string { |
| 31 | return input |
nothing calls this directly
no outgoing calls
no test coverage detected