(ch: number)
| 28 | ]; |
| 29 | |
| 30 | function isWhitespace(ch: number): boolean { |
| 31 | return ch === SPACE || ch === TAB || ch === NEWLINE; |
| 32 | } |
| 33 | |
| 34 | function isAlphaNumUnderscore(ch: number): boolean { |
| 35 | return (ch >= 65 && ch <= 90) || // A-Z |
no outgoing calls
no test coverage detected