Peek current character
(state: ParserState)
| 525 | |
| 526 | /** Peek current character */ |
| 527 | function peek(state: ParserState): string { |
| 528 | return state.input[state.pos] ?? ""; |
| 529 | } |
| 530 | |
| 531 | /** Consume current character and advance */ |
| 532 | function consume(state: ParserState): string { |
no outgoing calls
no test coverage detected