p-all-limit
Version:
```ts import { promiseAllLimit } from 'p-all-limit'
56 lines (55 loc) • 1.85 kB
JavaScript
;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// p-all-limit.ts
var p_all_limit_exports = {};
__export(p_all_limit_exports, {
promiseAllLimit: () => promiseAllLimit
});
module.exports = __toCommonJS(p_all_limit_exports);
var promiseAllLimit = (array, iterator, limit) => {
let inFlight = 0;
return new Promise((resolve, reject) => {
let results = [];
let itemIndex = -1;
const next = () => {
if (array.length === 0 && inFlight === 0) {
return resolve(results);
}
while (inFlight < limit && array.length > 0) {
inFlight++;
const nextItem = array.shift();
itemIndex += 1;
const currentIndexForThisClosure = itemIndex;
iterator(nextItem).then((singleResult) => {
results[currentIndexForThisClosure] = singleResult;
inFlight--;
next();
}).catch((error) => {
reject(error);
});
}
};
next();
});
};
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
promiseAllLimit
});
//# sourceMappingURL=p-all-limit.js.map