_.iteratee
  • References/JavaScript/Underscore/Utility

iteratee_.iteratee(value, [context]) Generates a callback that can be applied to each element in a collection. _.iteratee

2025-01-10 15:47:30
_.chain
  • References/JavaScript/Underscore/Chaining

chain_.chain(obj) Returns a wrapped object. Calling methods on this object will continue to return wrapped objects until value

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

delay_.delay(function, wait, *arguments) Much like setTimeout, invokes function after wait milliseconds. If

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

sortedIndex_.sortedIndex(list, value, [iteratee], [context]) Uses a binary search to determine the index at which the value

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

defer_.defer(function, *arguments) Defers invoking the function until the current call stack has cleared, similar to using

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

first_.first(array, [n]) Alias: head, take Returns the first element of an array

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

functions_.functions(object) Alias: methods Returns a sorted list of the names of every method

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
_.unzip
  • References/JavaScript/Underscore/Array

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

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

allKeys_.allKeys(object) Retrieve all the names of object's own and inherited properties.

2025-01-10 15:47:30