_.now
  • References/JavaScript/Underscore/Utility

now_.now() Returns an integer timestamp for the current time, using the fastest method available in the runtime. Useful for implementing

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

toArray_.toArray(list) Creates a real Array from the list (anything that can be iterated over). Useful for transmuting the

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

noConflict_.noConflict() Give control of the _ variable back to its previous owner. Returns a reference to the Underscore

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

min_.min(list, [iteratee], [context]) Returns the minimum value in list. If an iteratee function is provided, it will

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

isError_.isError(object) Returns true if object inherits from an Error.

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

negate_.negate(predicate) Returns a new negated version of the predicate function.

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

uniq_.uniq(array, [isSorted], [iteratee]) Alias: unique Produces a duplicate-free version of the

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

invert_.invert(object) Returns a copy of the object where the keys have become the values and the values the keys. For this

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

findIndex_.findIndex(array, predicate, [context]) Similar to _

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

wrap_.wrap(function, wrapper) Wraps the first function inside of the wrapper function, passing it as the first argument

2025-01-10 15:47:30