_.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
_.identity
  • References/JavaScript/Underscore/Utility

identity_.identity(value) Returns the same value that is used as the argument. In math: f(x) = x This function looks

2025-01-10 15:47:30
_.every
  • References/JavaScript/Underscore/Collection

every_.every(list, [predicate], [context]) Alias: all Returns true if all of the values

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
_.noop
  • References/JavaScript/Underscore/Utility

noop_.noop() Returns undefined irrespective of the arguments passed to it. Useful as the default for optional callback arguments

2025-01-10 15:47:30
_.pluck
  • References/JavaScript/Underscore/Collection

pluck_.pluck(list, propertyName) A convenient version of what is perhaps the most common use-case for map: extracting a list

2025-01-10 15:47:30
_.difference
  • References/JavaScript/Underscore/Array

difference_.difference(array, *others) Similar to without, but returns the values from array that are not present in

2025-01-10 15:47:30
_.range
  • References/JavaScript/Underscore/Array

range_.range([start], stop, [step]) A function to create flexibly-numbered lists of integers, handy for each and map

2025-01-10 15:47:30
_.debounce
  • References/JavaScript/Underscore/Function

debounce_.debounce(function, wait, [immediate]) Creates and returns a new debounced version of the passed function which will postpone

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