Projekt

Obecné

Profil

Stáhnout (1.28 KB) Statistiky
| Větev: | Revize:
1
'use strict';
2

    
3
Object.defineProperty(exports, "__esModule", {
4
  value: true
5
});
6

    
7
var _doParallelLimit = require('./internal/doParallelLimit');
8

    
9
var _doParallelLimit2 = _interopRequireDefault(_doParallelLimit);
10

    
11
var _map = require('./internal/map');
12

    
13
var _map2 = _interopRequireDefault(_map);
14

    
15
function _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
 */
36
exports.default = (0, _doParallelLimit2.default)(_map2.default);
37
module.exports = exports['default'];
(63-63/105)