pipe.js 150 B

1234567
  1. const reduce = require('./reduce');
  2. exports = function(...streams) {
  3. reduce(streams, (from, to) => from.pipe(to));
  4. };
  5. module.exports = exports;