(ch)
| 143456 | /* istanbul ignore next */ if (!condition) throw new Error("ASSERT: " + message); |
| 143457 | } |
| 143458 | function isDecimalDigit(ch) { |
| 143459 | return ch >= 0x30 && ch <= 0x39; // 0..9 |
| 143460 | } |
| 143461 | function isHexDigit(ch) { |
| 143462 | return "0123456789abcdefABCDEF".indexOf(ch) >= 0; |
| 143463 | } |
no outgoing calls
no test coverage detected