RFC 9110 tchar: token characters
(c: string)
| 514 | |
| 515 | /** RFC 9110 tchar: token characters */ |
| 516 | function isTchar(c: string): boolean { |
| 517 | const code = c.charCodeAt(0); |
| 518 | return code < 128 && TCHAR_LOOKUP[code]!; |
| 519 | } |
| 520 | |
| 521 | /** Check if at end of input */ |
| 522 | function isEof(state: ParserState): boolean { |
no outgoing calls
no test coverage detected