(code)
| 251 | * @returns {boolean} is a C0/C1 control that is not ASCII whitespace |
| 252 | */ |
| 253 | const isControlReference = (code) => |
| 254 | code === 0x0d || |
| 255 | ((code <= 0x1f || (code >= 0x7f && code <= 0x9f)) && |
| 256 | code !== CC_TAB && |
| 257 | code !== CC_LF && |
| 258 | code !== CC_FF && |
| 259 | code !== CC_SPACE); |
| 260 | |
| 261 | /** |
| 262 | * Severity of a tokenizer-detected parse error. `"warning"` is recoverable |
no outgoing calls
no test coverage detected