PIbd-22_Kaznacheeva.E.K_Int.../lab2/node_modules/async/internal/doLimit.js

12 lines
293 B
JavaScript
Raw Permalink Normal View History

2023-11-24 14:53:57 +04:00
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = doLimit;
function doLimit(fn, limit) {
return function (iterable, iteratee, callback) {
return fn(iterable, limit, iteratee, callback);
};
}
module.exports = exports["default"];