(stream)
| 1302 | }; |
| 1303 | |
| 1304 | function flow(stream) { |
| 1305 | const state = stream._readableState; |
| 1306 | debug('flow'); |
| 1307 | while ((state[kState] & kFlowing) !== 0 && stream.read() !== null); |
| 1308 | } |
| 1309 | |
| 1310 | // Wrap an old-style stream as the async data source. |
| 1311 | // This is *not* part of the readable stream interface. |
no test coverage detected
searching dependent graphs…