(stream)
| 24886 | }; |
| 24887 | |
| 24888 | function flow(stream) { |
| 24889 | var state = stream._readableState; |
| 24890 | debug('flow', state.flowing); |
| 24891 | while (state.flowing && stream.read() !== null) {} |
| 24892 | } |
| 24893 | |
| 24894 | // wrap an old-style stream as the async data source. |
| 24895 | // This is *not* part of the readable stream interface. |
no outgoing calls
no test coverage detected