1
0
mirror of https://github.com/titanscouting/tra-analysis.git synced 2025-03-26 14:35:19 +00:00

12 lines
293 B
JavaScript
Raw Normal View History

2019-01-06 13:14:45 -06: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"];