Last change
on this file since fa375fe was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.3 KB
|
Rev | Line | |
---|
[6a3a178] | 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']; |
---|
Note:
See
TracBrowser
for help on using the repository browser.