(text: string)
| 783 | } |
| 784 | |
| 785 | function parseIntAutoRadix(text: string): number { |
| 786 | const result: number = parseInt(text); |
| 787 | if (isNaN(result)) { |
| 788 | throw new Error('Invalid integer literal when parsing ' + text); |
| 789 | } |
| 790 | return result; |
| 791 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…