values_.values(object) Return all of the values of the object's own properties.
functions_.functions(object) Alias: methods Returns a sorted list of the names of every method
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
mapObject_.mapObject(object, iteratee, [context]) Like map
omit_.omit(object, *keys) Return a copy of the object, filtered to omit the blacklisted keys (or array of keys). Alternatively
shuffle_.shuffle(list) Returns a shuffled copy of the list, using a version of the
isElement_.isElement(object) Returns true if object is a DOM element.
Page 1 of 12