source: trip-planner-front/node_modules/async/timesSeries.js@ 188ee53

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

initial commit

  • Property mode set to 100644
File size: 1021 bytes
Line 
1'use strict';
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6
7var _timesLimit = require('./timesLimit');
8
9var _timesLimit2 = _interopRequireDefault(_timesLimit);
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 [times]{@link module:ControlFlow.times} but runs only a single async operation at a time.
19 *
20 * @name timesSeries
21 * @static
22 * @memberOf module:ControlFlow
23 * @method
24 * @see [async.times]{@link module:ControlFlow.times}
25 * @category Control Flow
26 * @param {number} n - The number of times to run the function.
27 * @param {AsyncFunction} iteratee - The async function to call `n` times.
28 * Invoked with the iteration index and a callback: (n, next).
29 * @param {Function} callback - see {@link module:Collections.map}.
30 */
31exports.default = (0, _doLimit2.default)(_timesLimit2.default, 1);
32module.exports = exports['default'];
Note: See TracBrowser for help on using the repository browser.