(ch: number)
| 167 | } |
| 168 | |
| 169 | export function isDigit(ch: number): boolean { |
| 170 | return ch >= CharacterCodes._0 && ch <= CharacterCodes._9; |
| 171 | } |
| 172 | |
| 173 | export function isHexDigit(ch: number): boolean { |
| 174 | return isDigit(ch) || ch >= CharacterCodes.A && ch <= CharacterCodes.F || ch >= CharacterCodes.a && ch <= CharacterCodes.f; |
no outgoing calls
no test coverage detected