property_.property(key) Returns a function that will itself return the key property of any passed-in object.
propertyOf_.propertyOf(object) Inverse of _.property. Takes an object and returns a function which will return the value
defaults_.defaults(object, *defaults) Fill in undefined properties in object with the first value present in the
extend_.extend(destination, *sources) Copy all of the properties in the source objects over to the destination
isEmpty_.isEmpty(object) Returns true if an enumerable object contains no values (no enumerable own-properties). For
pick_.pick(object, *keys) Return a copy of the object, filtered to only have values for the whitelisted keys (or array
clone_.clone(object) Create a shallow-copied clone of the provided plain object. Any nested objects or arrays will
matcher_.matcher(attrs) Alias: matches Returns a predicate function that will tell you if a passed
extendOwn_.extendOwn(destination, *sources) Alias: assign Like extend, but only copies own
isEqual_.isEqual(object, other) Performs an optimized deep comparison between the two objects, to determine if they should be considered
Page 2 of 4