github-pages-deploy-action/node_modules/p-each-series/index.js
2020-03-31 08:42:07 -04:00

17 lines
346 B
JavaScript

'use strict';
const pEachSeries = async (iterable, iterator) => {
let index = 0;
for (const value of iterable) {
// eslint-disable-next-line no-await-in-loop
await iterator(await value, index++);
}
return iterable;
};
module.exports = pEachSeries;
// TODO: Remove this for the next major release
module.exports.default = pEachSeries;