Consume current character and advance
(state: ParserState)
| 530 | |
| 531 | /** Consume current character and advance */ |
| 532 | function consume(state: ParserState): string { |
| 533 | return state.input[state.pos++] ?? ""; |
| 534 | } |
| 535 | |
| 536 | /** Skip optional whitespace (SP or HTAB) */ |
| 537 | function skipOWS(state: ParserState): void { |
no outgoing calls
no test coverage detected