(cc)
| 327 | * @returns {boolean} true, if cc is an ident-start code point |
| 328 | */ |
| 329 | const _isIdentStartCodePointCC = (cc) => |
| 330 | _isLetter(cc) || cc >= 0x80 || cc === CC_LOW_LINE; |
| 331 | |
| 332 | /** |
| 333 | * Spec: ident-code = ident-start / digit / hyphen-minus. |
no test coverage detected