(state)
| 6393 | // needReadable was set, then we ought to push more, so that another |
| 6394 | // 'readable' event will be triggered. |
| 6395 | function needMoreData(state) { |
| 6396 | return !state.ended && (state.needReadable || state.length < state.highWaterMark || state.length === 0); |
| 6397 | } |
| 6398 | |
| 6399 | Readable.prototype.isPaused = function () { |
| 6400 | return this._readableState.flowing === false; |
no outgoing calls
no test coverage detected
searching dependent graphs…