_.property
  • References/JavaScript/Underscore/Object

property_.property(key) Returns a function that will itself return the key property of any passed-in object.

2025-01-10 15:47:30
_.isEmpty
  • References/JavaScript/Underscore/Object

isEmpty_.isEmpty(object) Returns true if an enumerable object contains no values (no enumerable own-properties). For

2025-01-10 15:47:30
_.isFunction
  • References/JavaScript/Underscore/Object

isFunction_.isFunction(object) Returns true if object is a Function.

2025-01-10 15:47:30
_.propertyOf
  • References/JavaScript/Underscore/Object

propertyOf_.propertyOf(object) Inverse of _.property. Takes an object and returns a function which will return the value

2025-01-10 15:47:30
_.defaults
  • References/JavaScript/Underscore/Object

defaults_.defaults(object, *defaults) Fill in undefined properties in object with the first value present in the

2025-01-10 15:47:30
_.extend
  • References/JavaScript/Underscore/Object

extend_.extend(destination, *sources) Copy all of the properties in the source objects over to the destination

2025-01-10 15:47:30
_.matches
  • References/JavaScript/Underscore/Object

matcher_.matcher(attrs) Alias: matches Returns a predicate function that will tell you if a passed

2025-01-10 15:47:30
_.clone
  • References/JavaScript/Underscore/Object

clone_.clone(object) Create a shallow-copied clone of the provided plain object. Any nested objects or arrays will

2025-01-10 15:47:30
_.extendOwn
  • References/JavaScript/Underscore/Object

extendOwn_.extendOwn(destination, *sources) Alias: assign Like extend, but only copies own

2025-01-10 15:47:30
_.isMatch
  • References/JavaScript/Underscore/Object

isMatch_.isMatch(object, properties) Tells you if the keys and values in properties are contained in object.

2025-01-10 15:47:30