compose_.compose(*functions) Returns the composition of a list of functions, where each function consumes the return value
find_.find(list, predicate, [context]) Alias: detect Looks through each value in the list
contains_.contains(list, value, [fromIndex]) Alias: includes Returns true if the value
isArguments_.isArguments(object) Returns true if object is an Arguments object.
isEmpty_.isEmpty(object) Returns true if an enumerable object contains no values (no enumerable own-properties). For
pluck_.pluck(list, propertyName) A convenient version of what is perhaps the most common use-case for map: extracting a list
range_.range([start], stop, [step]) A function to create flexibly-numbered lists of integers, handy for each and map
noop_.noop() Returns undefined irrespective of the arguments passed to it. Useful as the default for optional callback arguments
isFunction_.isFunction(object) Returns true if object is a Function.
union_.union(*arrays) Computes the union of the passed-in arrays: the list of unique items, in order, that are present in
Page 4 of 12