(...streams)
| 180 | } |
| 181 | |
| 182 | function pipeline(...streams) { |
| 183 | return pipelineImpl(streams, once(popCallback(streams))); |
| 184 | } |
| 185 | |
| 186 | function pipelineImpl(streams, callback, opts) { |
| 187 | if (streams.length === 1 && ArrayIsArray(streams[0])) { |
no test coverage detected
searching dependent graphs…