source: trip-planner-front/node_modules/async/eachOfSeries.js@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.1 KB
Line 
1'use strict';
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6
7var _eachOfLimit = require('./eachOfLimit');
8
9var _eachOfLimit2 = _interopRequireDefault(_eachOfLimit);
10
11var _doLimit = require('./internal/doLimit');
12
13var _doLimit2 = _interopRequireDefault(_doLimit);
14
15function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16
17/**
18 * The same as [`eachOf`]{@link module:Collections.eachOf} but runs only a single async operation at a time.
19 *
20 * @name eachOfSeries
21 * @static
22 * @memberOf module:Collections
23 * @method
24 * @see [async.eachOf]{@link module:Collections.eachOf}
25 * @alias forEachOfSeries
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 item in
29 * `coll`.
30 * Invoked with (item, key, callback).
31 * @param {Function} [callback] - A callback which is called when all `iteratee`
32 * functions have finished, or an error occurs. Invoked with (err).
33 */
34exports.default = (0, _doLimit2.default)(_eachOfLimit2.default, 1);
35module.exports = exports['default'];
Note: See TracBrowser for help on using the repository browser.