after_.after(count, function) Creates a version of the function that will only be run after first being called count times
wrap_.wrap(function, wrapper) Wraps the first function inside of the wrapper function, passing it as the first argument
findLastIndex_.findLastIndex(array, predicate, [context]) Like _
invert_.invert(object) Returns a copy of the object where the keys have become the values and the values the keys. For this
max_.max(list, [iteratee], [context]) Returns the maximum value in list. If an iteratee function is provided, it will
isArray_.isArray(object) Returns true if object is an Array.
now_.now() Returns an integer timestamp for the current time, using the fastest method available in the runtime. Useful for implementing
compact_.compact(array) Returns a copy of the array with all falsy values removed. In JavaScript, false, null
isError_.isError(object) Returns true if object inherits from an Error.
negate_.negate(predicate) Returns a new negated version of the predicate function.
Page 11 of 12