times_.times(n, iteratee, [context]) Invokes the given iteratee function n times. Each invocation of iteratee is called
bind_.bind(function, object, *arguments) Bind a function to an object, meaning that whenever the function is called
sortedIndex_.sortedIndex(list, value, [iteratee], [context]) Uses a binary search to determine the index at which the value
iteratee_.iteratee(value, [context]) Generates a callback that can be applied to each element in a collection. _.iteratee
isFinite_.isFinite(object) Returns true if object is a finite Number.
omit_.omit(object, *keys) Return a copy of the object, filtered to omit the blacklisted keys (or array of keys). Alternatively
where_.where(list, properties) Looks through each value in the list, returning an array of all the values that contain all
defer_.defer(function, *arguments) Defers invoking the function until the current call stack has cleared, similar to using
shuffle_.shuffle(list) Returns a shuffled copy of the list, using a version of the
bindAll_.bindAll(object, *methodNames) Binds a number of methods on the object, specified by methodNames, to be run
Page 1 of 12