_.compose
  • References/JavaScript/Underscore/Function

compose_.compose(*functions) Returns the composition of a list of functions, where each function consumes the return value

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

find_.find(list, predicate, [context]) Alias: detect Looks through each value in the list

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

contains_.contains(list, value, [fromIndex]) Alias: includes Returns true if the value

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

isArguments_.isArguments(object) Returns true if object is an Arguments object.

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

isEmpty_.isEmpty(object) Returns true if an enumerable object contains no values (no enumerable own-properties). For

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

pluck_.pluck(list, propertyName) A convenient version of what is perhaps the most common use-case for map: extracting a list

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

range_.range([start], stop, [step]) A function to create flexibly-numbered lists of integers, handy for each and map

2025-01-10 15:47:30
_.noop
  • References/JavaScript/Underscore/Utility

noop_.noop() Returns undefined irrespective of the arguments passed to it. Useful as the default for optional callback arguments

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

isFunction_.isFunction(object) Returns true if object is a Function.

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

union_.union(*arrays) Computes the union of the passed-in arrays: the list of unique items, in order, that are present in

2025-01-10 15:47:30