(code)
| 10431 | return isDigit(ch) || ch >= 65 /* CharacterCodes.A */ && ch <= 70 /* CharacterCodes.F */ || ch >= 97 /* CharacterCodes.a */ && ch <= 102 /* CharacterCodes.f */; |
| 10432 | } |
| 10433 | function isCodePoint(code) { |
| 10434 | return code <= 0x10FFFF; |
| 10435 | } |
| 10436 | /* @internal */ |
| 10437 | function isOctalDigit(ch) { |
| 10438 | return ch >= 48 /* CharacterCodes._0 */ && ch <= 55 /* CharacterCodes._7 */; |
no outgoing calls
no test coverage detected
searching dependent graphs…