Sha256: 2fb3507b611a0a31665c13f85d4e4a77f2cbc4717feb238caf58e0e2f669ef48

Contents?: true

Size: 676 Bytes

Versions: 6

Compression:

Stored size: 676 Bytes

Contents

/**
 * A specialized version of `baseAggregator` for arrays.
 *
 * @private
 * @param {Array} [array] The array to iterate over.
 * @param {Function} setter The function to set `accumulator` values.
 * @param {Function} iteratee The iteratee to transform keys.
 * @param {Object} accumulator The initial aggregated object.
 * @returns {Function} Returns `accumulator`.
 */
function arrayAggregator(array, setter, iteratee, accumulator) {
  var index = -1,
      length = array ? array.length : 0;

  while (++index < length) {
    var value = array[index];
    setter(accumulator, value, iteratee(value), array);
  }
  return accumulator;
}

module.exports = arrayAggregator;

Version data entries

6 entries across 4 versions & 2 rubygems

Version Path
minimum_viable_product-0.0.11 test/dummy/node_modules/lodash/_arrayAggregator.js
babel-schmooze-sprockets-0.1.3 node_modules/lodash/_arrayAggregator.js
babel-schmooze-sprockets-0.1.2 node_modules/lodash/_arrayAggregator.js
babel-schmooze-sprockets-0.1.1 node_modules/babel-core/node_modules/lodash/_arrayAggregator.js
babel-schmooze-sprockets-0.1.1 node_modules/babel-generator/node_modules/lodash/_arrayAggregator.js
babel-schmooze-sprockets-0.1.1 node_modules/babel-register/node_modules/lodash/_arrayAggregator.js