(cc)
| 348 | * @returns {boolean} true, if cc is an ident-sequence code point |
| 349 | */ |
| 350 | const _isIdentCodePoint = (cc) => |
| 351 | cc < 128 ? _identCharTable[cc] === 1 : _isIdentStartCodePointCC(cc); |
| 352 | |
| 353 | /** |
| 354 | * ASCII case-insensitive equality against a lowercase literal — avoids the |
no test coverage detected