Files
setup-ruby/node_modules/p-each-series/index.js
Stephen Franceschelli e3283467a1 Fix bug. Add workflows.
2019-07-15 13:23:24 -04:00

5 lines
162 B
JavaScript

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