defer_.defer(function, *arguments) Defers invoking the function until the current call stack has cleared, similar to using
value_.chain(obj).value() Extracts the value of a wrapped object.
last_.last(array, [n]) Returns the last element of an array. Passing n will return the last n elements of the
unzip_.unzip(array) The opposite of zip. Given an array
keys_.keys(object) Retrieve all the names of the object's own enumerable properties.
allKeys_.allKeys(object) Retrieve all the names of object's own and inherited properties.
iteratee_.iteratee(value, [context]) Generates a callback that can be applied to each element in a collection. _.iteratee
sortedIndex_.sortedIndex(list, value, [iteratee], [context]) Uses a binary search to determine the index at which the value
where_.where(list, properties) Looks through each value in the list, returning an array of all the values that contain all
sortBy_.sortBy(list, iteratee, [context]) Returns a (stably) sorted copy of list, ranked in ascending order by the results
Page 1 of 12