wallet-core/node_modules/async/internal/doLimit.js

12 lines
293 B
JavaScript
Raw Normal View History

2017-05-03 15:35:00 +02: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"];