_.unzip
  • References/JavaScript/Underscore/Array

unzip_.unzip(array) The opposite of zip. Given an array

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

once_.once(function) Creates a version of the function that can only be called one time. Repeated calls to the modified function

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

mapObject_.mapObject(object, iteratee, [context]) Like map

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

isElement_.isElement(object) Returns true if object is a DOM element.

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

keys_.keys(object) Retrieve all the names of the object's own enumerable properties.

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
_.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
_.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
_.invoke
  • References/JavaScript/Underscore/Collection

invoke_.invoke(list, methodName, *arguments) Calls the method named by methodName on each value in the list. Any extra

2025-01-10 15:47:30
_.result
  • References/JavaScript/Underscore/Utility

result_.result(object, property, [defaultValue]) If the value of the named property is a function then invoke it with the

2025-01-10 15:47:30