_.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
_.negate
  • References/JavaScript/Underscore/Function

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

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

countBy_.countBy(list, iteratee, [context]) Sorts a list into groups and returns a count for the number of objects in each group

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

object_.object(list, [values]) Converts arrays into objects. Pass either a single list of [key, value] pairs, or a list

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

without_.without(array, *values) Returns a copy of the array with all instances of the values removed.

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
_.throttle
  • References/JavaScript/Underscore/Function

throttle_.throttle(function, wait, [options]) Creates and returns a new, throttled version of the passed function, that, when invoked

2025-01-10 15:47:30