(cb, value)
| 208 | } |
| 209 | |
| 210 | #handleDecodedValue(cb, value) { |
| 211 | if (typeof value === 'function') { |
| 212 | this.#next = this.#continueDecodeValue.bind(this, cb, value); |
| 213 | return true; |
| 214 | } |
| 215 | |
| 216 | cb(value); |
| 217 | return false; |
| 218 | } |
| 219 | |
| 220 | #continueDecodeValue(cb, next, chunk) { |
| 221 | this.#next = undefined; |
no outgoing calls
no test coverage detected