contains_.contains(list, value, [fromIndex]) Alias: includes Returns true if the value
before_.before(count, function) Creates a version of the function that can be called no more than count times. The result
random_.random(min, max) Returns a random integer between min and max, inclusive. If you only pass one argument, it
union_.union(*arrays) Computes the union of the passed-in arrays: the list of unique items, in order, that are present in
result_.result(object, property, [defaultValue]) If the value of the named property is a function then invoke it with the
find_.find(list, predicate, [context]) Alias: detect Looks through each value in the list
compose_.compose(*functions) Returns the composition of a list of functions, where each function consumes the return value
extend_.extend(destination, *sources) Copy all of the properties in the source objects over to the destination
pick_.pick(object, *keys) Return a copy of the object, filtered to only have values for the whitelisted keys (or array
isEmpty_.isEmpty(object) Returns true if an enumerable object contains no values (no enumerable own-properties). For
Page 4 of 12