(cb, next, chunk)
| 218 | } |
| 219 | |
| 220 | #continueDecodeValue(cb, next, chunk) { |
| 221 | this.#next = undefined; |
| 222 | return this.#handleDecodedValue(cb, next(chunk)); |
| 223 | } |
| 224 | |
| 225 | #decodeNull() { |
| 226 | this.#cursor += 2; // skip \r\n |
nothing calls this directly
no test coverage detected