index.js 162 B

1234
  1. 'use strict';
  2. const pReduce = require('p-reduce');
  3. module.exports = (iterable, iterator) => pReduce(iterable, (a, b, i) => iterator(b, i)).then(() => iterable);