negate_.negate(predicate) Returns a new negated version of the predicate function.
wrap_.wrap(function, wrapper) Wraps the first function inside of the wrapper function, passing it as the first argument
throttle_.throttle(function, wait, [options]) Creates and returns a new, throttled version of the passed function, that, when invoked
memoize_.memoize(function, [hashFunction]) Memoizes a given function by caching the computed result. Useful for speeding up
Page 2 of 2