UNPKG

1.31 kBJavaScriptView Raw
1'use strict';
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6
7var _doParallelLimit = require('./internal/doParallelLimit');
8
9var _doParallelLimit2 = _interopRequireDefault(_doParallelLimit);
10
11var _map = require('./internal/map');
12
13var _map2 = _interopRequireDefault(_map);
14
15function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16
17/**
18 * The same as [`map`]{@link module:Collections.map} but runs a maximum of `limit` async operations at a time.
19 *
20 * @name mapLimit
21 * @static
22 * @memberOf module:Collections
23 * @method
24 * @see [async.map]{@link module:Collections.map}
25 * @category Collection
26 * @param {Array|Iterable|Object} coll - A collection to iterate over.
27 * @param {number} limit - The maximum number of async operations at a time.
28 * @param {AsyncFunction} iteratee - An async function to apply to each item in
29 * `coll`.
30 * The iteratee should complete with the transformed item.
31 * Invoked with (item, callback).
32 * @param {Function} [callback] - A callback which is called when all `iteratee`
33 * functions have finished, or an error occurs. Results is an array of the
34 * transformed items from the `coll`. Invoked with (err, results).
35 */
36exports.default = (0, _doParallelLimit2.default)(_map2.default);
37module.exports = exports['default'];
\No newline at end of file