invert_.invert(object) Returns a copy of the object where the keys have become the values and the values the keys. For this
toArray_.toArray(list) Creates a real Array from the list (anything that can be iterated over). Useful for transmuting the
object_.object(list, [values]) Converts arrays into objects. Pass either a single list of [key, value] pairs, or a list
compact_.compact(array) Returns a copy of the array with all falsy values removed. In JavaScript, false, null
now_.now() Returns an integer timestamp for the current time, using the fastest method available in the runtime. Useful for implementing
min_.min(list, [iteratee], [context]) Returns the minimum value in list. If an iteratee function is provided, it will
findIndex_.findIndex(array, predicate, [context]) Similar to _
after_.after(count, function) Creates a version of the function that will only be run after first being called count times
memoize_.memoize(function, [hashFunction]) Memoizes a given function by caching the computed result. Useful for speeding up
uniq_.uniq(array, [isSorted], [iteratee]) Alias: unique Produces a duplicate-free version of the
Page 11 of 12