_.indexBy
  • References/JavaScript/Underscore/Collection

indexBy_.indexBy(list, iteratee, [context]) Given a list, and an iteratee function that returns a key for each element

2025-01-10 15:47:30
_.pairs
  • References/JavaScript/Underscore/Object

pairs_.pairs(object) Convert an object into a list of [key, value] pairs.

2025-01-10 15:47:30
_.partial
  • References/JavaScript/Underscore/Function

partial_.partial(function, *arguments) Partially apply a function by filling in any number of its arguments, without

2025-01-10 15:47:30
_.initial
  • References/JavaScript/Underscore/Array

initial_.initial(array, [n]) Returns everything but the last entry of the array. Especially useful on the arguments object. Pass

2025-01-10 15:47:30
_.tap
  • References/JavaScript/Underscore/Object

tap_.tap(object, interceptor) Invokes interceptor with the object, and then returns object. The primary purpose

2025-01-10 15:47:30
_.reduceRight
  • References/JavaScript/Underscore/Collection

reduceRight_.reduceRight(list, iteratee, memo, [context]) Alias: foldr The right-associative version

2025-01-10 15:47:30
_.reduce
  • References/JavaScript/Underscore/Collection

reduce_.reduce(list, iteratee, [memo], [context]) Aliases: inject, foldl Also known as inject

2025-01-10 15:47:30
_.isString
  • References/JavaScript/Underscore/Object

isString_.isString(object) Returns true if object is a String.

2025-01-10 15:47:30
_.groupBy
  • References/JavaScript/Underscore/Collection

groupBy_.groupBy(list, iteratee, [context]) Splits a collection into sets, grouped by the result of running each value through iteratee

2025-01-10 15:47:30
_.isUndefined
  • References/JavaScript/Underscore/Object

isUndefined_.isUndefined(value) Returns true if value is undefined.

2025-01-10 15:47:30