You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
787 B

1 month ago
  1. import arrayAggregator from './_arrayAggregator.js';
  2. import baseAggregator from './_baseAggregator.js';
  3. import baseIteratee from './_baseIteratee.js';
  4. import isArray from './isArray.js';
  5. /**
  6. * Creates a function like `_.groupBy`.
  7. *
  8. * @private
  9. * @param {Function} setter The function to set accumulator values.
  10. * @param {Function} [initializer] The accumulator object initializer.
  11. * @returns {Function} Returns the new aggregator function.
  12. */
  13. function createAggregator(setter, initializer) {
  14. return function(collection, iteratee) {
  15. var func = isArray(collection) ? arrayAggregator : baseAggregator,
  16. accumulator = initializer ? initializer() : {};
  17. return func(collection, setter, baseIteratee(iteratee, 2), accumulator);
  18. };
  19. }
  20. export default createAggregator;