mapObject_.mapObject(object, iteratee, [context]) Like map
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
last_.last(array, [n]) Returns the last element of an array. Passing n will return the last n elements of the
keys_.keys(object) Retrieve all the names of the object's own enumerable properties.
bindAll_.bindAll(object, *methodNames) Binds a number of methods on the object, specified by methodNames, to be run
once_.once(function) Creates a version of the function that can only be called one time. Repeated calls to the modified function
omit_.omit(object, *keys) Return a copy of the object, filtered to omit the blacklisted keys (or array of keys). Alternatively
shuffle_.shuffle(list) Returns a shuffled copy of the list, using a version of the
sortBy_.sortBy(list, iteratee, [context]) Returns a (stably) sorted copy of list, ranked in ascending order by the results
Page 1 of 12