(state)
| 24394 | // needReadable was set, then we ought to push more, so that another |
| 24395 | // 'readable' event will be triggered. |
| 24396 | function needMoreData(state) { |
| 24397 | return !state.ended && (state.needReadable || state.length < state.highWaterMark || state.length === 0); |
| 24398 | } |
| 24399 | |
| 24400 | // backwards compatibility. |
| 24401 | Readable.prototype.setEncoding = function (enc) { |