(ch)
| 10425 | } |
| 10426 | ts.isLineBreak = isLineBreak; |
| 10427 | function isDigit(ch) { |
| 10428 | return ch >= 48 /* CharacterCodes._0 */ && ch <= 57 /* CharacterCodes._9 */; |
| 10429 | } |
| 10430 | function isHexDigit(ch) { |
| 10431 | return isDigit(ch) || ch >= 65 /* CharacterCodes.A */ && ch <= 70 /* CharacterCodes.F */ || ch >= 97 /* CharacterCodes.a */ && ch <= 102 /* CharacterCodes.f */; |
| 10432 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…