(cc)
| 296 | // Space-first: U+0020 is the common case, so it short-circuits before the |
| 297 | // rarer tab / newline tests. |
| 298 | const _isWhiteSpace = (cc) => _isSpace(cc) || _isNewline(cc); |
| 299 | |
| 300 | /** |
| 301 | * @param {number} cc char code |
no test coverage detected