Projekt

Obecné

Profil

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

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

    
7
var _doLimit = require('./internal/doLimit');
8

    
9
var _doLimit2 = _interopRequireDefault(_doLimit);
10

    
11
var _concatLimit = require('./concatLimit');
12

    
13
var _concatLimit2 = _interopRequireDefault(_concatLimit);
14

    
15
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16

    
17
/**
18
 * The same as [`concat`]{@link module:Collections.concat} but runs only a single async operation at a time.
19
 *
20
 * @name concatSeries
21
 * @static
22
 * @memberOf module:Collections
23
 * @method
24
 * @see [async.concat]{@link module:Collections.concat}
25
 * @category Collection
26
 * @param {Array|Iterable|Object} coll - A collection to iterate over.
27
 * @param {AsyncFunction} iteratee - A function to apply to each item in `coll`.
28
 * The iteratee should complete with an array an array of results.
29
 * Invoked with (item, callback).
30
 * @param {Function} [callback(err)] - A callback which is called after all the
31
 * `iteratee` functions have finished, or an error occurs. Results is an array
32
 * containing the concatenated results of the `iteratee` function. Invoked with
33
 * (err, results).
34
 */
35
exports.default = (0, _doLimit2.default)(_concatLimit2.default, 1);
36
module.exports = exports['default'];
(21-21/105)