(cc)
| 492 | * @returns {boolean} true, if cc is a non-printable code point |
| 493 | */ |
| 494 | const _isNonPrintableCodePoint = (cc) => |
| 495 | (cc >= 0x00 && cc <= 0x08) || |
| 496 | cc === 0x0b || |
| 497 | (cc >= 0x0e && cc <= 0x1f) || |
| 498 | cc === 0x7f; |
| 499 | |
| 500 | /** |
| 501 | * Consume the body of a number per the spec (does not classify integer |