1 |
9bb1e829
|
cagy
|
'use strict';
|
2 |
|
|
|
3 |
|
|
Object.defineProperty(exports, "__esModule", {
|
4 |
|
|
value: true
|
5 |
|
|
});
|
6 |
|
|
|
7 |
|
|
var _eachLimit = require('./eachLimit');
|
8 |
|
|
|
9 |
|
|
var _eachLimit2 = _interopRequireDefault(_eachLimit);
|
10 |
|
|
|
11 |
|
|
var _doLimit = require('./internal/doLimit');
|
12 |
|
|
|
13 |
|
|
var _doLimit2 = _interopRequireDefault(_doLimit);
|
14 |
|
|
|
15 |
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
16 |
|
|
|
17 |
|
|
/**
|
18 |
|
|
* The same as [`each`]{@link module:Collections.each} but runs only a single async operation at a time.
|
19 |
|
|
*
|
20 |
|
|
* @name eachSeries
|
21 |
|
|
* @static
|
22 |
|
|
* @memberOf module:Collections
|
23 |
|
|
* @method
|
24 |
|
|
* @see [async.each]{@link module:Collections.each}
|
25 |
|
|
* @alias forEachSeries
|
26 |
|
|
* @category Collection
|
27 |
|
|
* @param {Array|Iterable|Object} coll - A collection to iterate over.
|
28 |
|
|
* @param {AsyncFunction} iteratee - An async function to apply to each
|
29 |
|
|
* item in `coll`.
|
30 |
|
|
* The array index is not passed to the iteratee.
|
31 |
|
|
* If you need the index, use `eachOfSeries`.
|
32 |
|
|
* Invoked with (item, callback).
|
33 |
|
|
* @param {Function} [callback] - A callback which is called when all
|
34 |
|
|
* `iteratee` functions have finished, or an error occurs. Invoked with (err).
|
35 |
|
|
*/
|
36 |
|
|
exports.default = (0, _doLimit2.default)(_eachLimit2.default, 1);
|
37 |
|
|
module.exports = exports['default'];
|