Sha256: a5c307d0493898cff77b0fd85a028550f52cc01a2df7b3d7df2c2302824c5443

Contents?: true

Size: 1.3 KB

Versions: 21

Compression:

Stored size: 1.3 KB

Contents

'use strict';

Object.defineProperty(exports, "__esModule", {
  value: true
});
exports.default = groupBySeries;

var _groupByLimit = require('./groupByLimit');

var _groupByLimit2 = _interopRequireDefault(_groupByLimit);

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

/**
 * The same as [`groupBy`]{@link module:Collections.groupBy} but runs only a single async operation at a time.
 *
 * @name groupBySeries
 * @static
 * @memberOf module:Collections
 * @method
 * @see [async.groupBy]{@link module:Collections.groupBy}
 * @category Collection
 * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.
 * @param {AsyncFunction} iteratee - An async function to apply to each item in
 * `coll`.
 * The iteratee should complete with a `key` to group the value under.
 * Invoked with (value, callback).
 * @param {Function} [callback] - A callback which is called when all `iteratee`
 * functions have finished, or an error occurs. Result is an `Object` whoses
 * properties are arrays of values which returned the corresponding key.
 * @returns {Promise} a promise, if no callback is passed
 */
function groupBySeries(coll, iteratee, callback) {
  return (0, _groupByLimit2.default)(coll, 1, iteratee, callback);
}
module.exports = exports['default'];

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
appmap-0.72.2 ./node_modules/async/groupBySeries.js
appmap-0.72.1 ./node_modules/async/groupBySeries.js
appmap-0.72.0 ./node_modules/async/groupBySeries.js
appmap-0.71.0 ./node_modules/async/groupBySeries.js
appmap-0.70.2 ./node_modules/async/groupBySeries.js
appmap-0.70.1 ./node_modules/async/groupBySeries.js
appmap-0.70.0 ./node_modules/async/groupBySeries.js
appmap-0.69.0 ./node_modules/async/groupBySeries.js
appmap-0.68.2 ./node_modules/async/groupBySeries.js
appmap-0.68.1 ./node_modules/async/groupBySeries.js
appmap-0.68.0 ./node_modules/async/groupBySeries.js
appmap-0.67.1 ./node_modules/async/groupBySeries.js
appmap-0.67.0 ./node_modules/async/groupBySeries.js
appmap-0.66.2 ./node_modules/async/groupBySeries.js
appmap-0.66.1 ./node_modules/async/groupBySeries.js
appmap-0.66.0 ./node_modules/async/groupBySeries.js
appmap-0.65.1 ./node_modules/async/groupBySeries.js
appmap-0.65.0 ./node_modules/async/groupBySeries.js
appmap-0.64.0 ./node_modules/async/groupBySeries.js
appmap-0.63.0 ./node_modules/async/groupBySeries.js