basant307/AI_Governance_Project
048
1'use strict';2 3Object.defineProperty(exports, "__esModule", {4 value: true5});6 7var _concatLimit = require('./concatLimit.js');8 9var _concatLimit2 = _interopRequireDefault(_concatLimit);10 11var _awaitify = require('./internal/awaitify.js');12 13var _awaitify2 = _interopRequireDefault(_awaitify);14 15function _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 concatSeries21 * @static22 * @memberOf module:Collections23 * @method24 * @see [async.concat]{@link module:Collections.concat}25 * @category Collection26 * @alias flatMapSeries27 * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.28 * @param {AsyncFunction} iteratee - A function to apply to each item in `coll`.29 * The iteratee should complete with an array an array of results.30 * Invoked with (item, callback).31 * @param {Function} [callback] - A callback which is called after all the32 * `iteratee` functions have finished, or an error occurs. Results is an array33 * containing the concatenated results of the `iteratee` function. Invoked with34 * (err, results).35 * @returns A Promise, if no callback is passed36 */37function concatSeries(coll, iteratee, callback) {38 return (0, _concatLimit2.default)(coll, 1, iteratee, callback);39}40exports.default = (0, _awaitify2.default)(concatSeries, 3);41module.exports = exports.default;