value_.chain(obj).value() Extracts the value of a wrapped object.
allKeys_.allKeys(object) Retrieve all the names of object's own and inherited properties.
values_.values(object) Return all of the values of the object's own properties.
iteratee_.iteratee(value, [context]) Generates a callback that can be applied to each element in a collection. _.iteratee
bind_.bind(function, object, *arguments) Bind a function to an object, meaning that whenever the function is called
defer_.defer(function, *arguments) Defers invoking the function until the current call stack has cleared, similar to using
functions_.functions(object) Alias: methods Returns a sorted list of the names of every method
unzip_.unzip(array) The opposite of zip. Given an array
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