index.js 290 B

123456789
  1. 'use strict';
  2. const pReduce = require('p-reduce');
  3. const pWaterfall = (iterable, initialValue) =>
  4. pReduce(iterable, (previousValue, fn) => fn(previousValue), initialValue);
  5. module.exports = pWaterfall;
  6. // TODO: Remove this for the next major release
  7. module.exports.default = pWaterfall;