now_.now() Returns an integer timestamp for the current time, using the fastest method available in the runtime. Useful for implementing
negate_.negate(predicate) Returns a new negated version of the predicate function.
noConflict_.noConflict() Give control of the _ variable back to its previous owner. Returns a reference to the Underscore
countBy_.countBy(list, iteratee, [context]) Sorts a list into groups and returns a count for the number of objects in each group
wrap_.wrap(function, wrapper) Wraps the first function inside of the wrapper function, passing it as the first argument
object_.object(list, [values]) Converts arrays into objects. Pass either a single list of [key, value] pairs, or a list
uniq_.uniq(array, [isSorted], [iteratee]) Alias: unique Produces a duplicate-free version of the
without_.without(array, *values) Returns a copy of the array with all instances of the values removed.
min_.min(list, [iteratee], [context]) Returns the minimum value in list. If an iteratee function is provided, it will
throttle_.throttle(function, wait, [options]) Creates and returns a new, throttled version of the passed function, that, when invoked
Page 11 of 12