(condition, message)
| 190 | }; |
| 191 | |
| 192 | function assert(condition, message) { |
| 193 | if (!condition) { |
| 194 | throw new Error('ASSERT: ' + message); |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | function isDecimalDigit(ch) { |
| 199 | return (ch >= 0x30 && ch <= 0x39); |
no outgoing calls
no test coverage detected