(ch: number)
| 32 | } |
| 33 | |
| 34 | function isAlphaNumUnderscore(ch: number): boolean { |
| 35 | return (ch >= 65 && ch <= 90) || // A-Z |
| 36 | (ch >= 97 && ch <= 122) || // a-z |
| 37 | (ch >= 48 && ch <= 57) || // 0-9 |
| 38 | ch === 95; // _ |
| 39 | } |
| 40 | |
| 41 | /** |
| 42 | * Checks if the input at current position matches the given string. |
no outgoing calls
no test coverage detected