Add node modules and compiled JavaScript from main
This commit is contained in:
parent
d893f27da9
commit
4b42a5ec78
6750 changed files with 1745644 additions and 10860 deletions
16
node_modules/p-each-series/index.js
generated
vendored
Normal file
16
node_modules/p-each-series/index.js
generated
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
'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;
|
Loading…
Add table
Add a link
Reference in a new issue