fold.js

  1. /**
  2. * Returns a single item by iterating over an array like object and call a function on each item
  3. *
  4. * @function fold
  5. * @description Returns a single item by iterating over an array like object and call a function on each item
  6. * @since v1.0.2
  7. * @param {Function} cb receives 4 values: the accumulator, the item, the index, and the initial value.
  8. * @param {*} init - the the initial value
  9. * @param {Array|Object} a the array like item to iterate over
  10. * @return {*} The accumulated value
  11. **/
  12. import curry from './curry'
  13. import arrayFold from './array/fold'
  14. import objectFold from './object/fold'
  15. import stringFold from './string/fold'
  16. import type from './type'
  17. export default curry(function fold (cb, init, a) {
  18. const typeMap = {
  19. 'Object': objectFold,
  20. 'Array': arrayFold,
  21. 'String': stringFold
  22. }
  23. return typeMap[type(a)](cb, init, a)
  24. })