mapObject_.mapObject(object, iteratee, [context]) Like map
isElement_.isElement(object) Returns true if object is a DOM element.
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.
isFinite_.isFinite(object) Returns true if object is a finite Number.
omit_.omit(object, *keys) Return a copy of the object, filtered to omit the blacklisted keys (or array of keys). Alternatively
keys_.keys(object) Retrieve all the names of the object's own enumerable properties.
functions_.functions(object) Alias: methods Returns a sorted list of the names of every method
propertyOf_.propertyOf(object) Inverse of _.property. Takes an object and returns a function which will return the value
property_.property(key) Returns a function that will itself return the key property of any passed-in object.
Page 1 of 4