(cc)
| 317 | * @returns {boolean} is letter (a-z / A-Z) |
| 318 | */ |
| 319 | const _isLetter = (cc) => |
| 320 | (cc >= CC_LOWER_A && cc <= CC_LOWER_Z) || |
| 321 | (cc >= CC_UPPER_A && cc <= CC_UPPER_Z); |
| 322 | |
| 323 | /** |
| 324 | * Spec: ident-start = letter / non-ASCII / `_`. Internal helper that |
no outgoing calls
no test coverage detected