functions_.functions(object) Alias: methods Returns a sorted list of the names of every method
once_.once(function) Creates a version of the function that can only be called one time. Repeated calls to the modified function
unzip_.unzip(array) The opposite of zip. Given an array
iteratee_.iteratee(value, [context]) Generates a callback that can be applied to each element in a collection. _.iteratee
mapObject_.mapObject(object, iteratee, [context]) Like map
sortBy_.sortBy(list, iteratee, [context]) Returns a (stably) sorted copy of list, ranked in ascending order by the results
sortedIndex_.sortedIndex(list, value, [iteratee], [context]) Uses a binary search to determine the index at which the value
isElement_.isElement(object) Returns true if object is a DOM element.
delay_.delay(function, wait, *arguments) Much like setTimeout, invokes function after wait milliseconds. If
last_.last(array, [n]) Returns the last element of an array. Passing n will return the last n elements of the
Page 1 of 12