defer_.defer(function, *arguments) Defers invoking the function until the current call stack has cleared, similar to using
times_.times(n, iteratee, [context]) Invokes the given iteratee function n times. Each invocation of iteratee is called
where_.where(list, properties) Looks through each value in the list, returning an array of all the values that contain all
bind_.bind(function, object, *arguments) Bind a function to an object, meaning that whenever the function is called
first_.first(array, [n]) Alias: head, take Returns the first element of an array
shuffle_.shuffle(list) Returns a shuffled copy of the list, using a version of the
sortedIndex_.sortedIndex(list, value, [iteratee], [context]) Uses a binary search to determine the index at which the value
omit_.omit(object, *keys) Return a copy of the object, filtered to omit the blacklisted keys (or array of keys). Alternatively
bindAll_.bindAll(object, *methodNames) Binds a number of methods on the object, specified by methodNames, to be run
functions_.functions(object) Alias: methods Returns a sorted list of the names of every method
Page 2 of 12