(consume2, chunk)
| 9906 | const { _readableState: state } = consume2.stream; |
| 9907 | if (state.bufferIndex) { |
| 9908 | const start = state.bufferIndex; |
| 9909 | const end = state.buffer.length; |
| 9910 | for (let n = start; n < end; n++) { |
| 9911 | consumePush(consume2, state.buffer[n]); |
| 9912 | } |
| 9913 | } else { |
| 9914 | for (const chunk of state.buffer) { |
no test coverage detected