isFinite_.isFinite(object) Returns true if object is a finite Number.
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
isElement_.isElement(object) Returns true if object is a DOM element.
mapObject_.mapObject(object, iteratee, [context]) Like map
first_.first(array, [n]) Alias: head, take Returns the first element of an array
times_.times(n, iteratee, [context]) Invokes the given iteratee function n times. Each invocation of iteratee is called
chain_.chain(obj) Returns a wrapped object. Calling methods on this object will continue to return wrapped objects until value
bind_.bind(function, object, *arguments) Bind a function to an object, meaning that whenever the function is called
delay_.delay(function, wait, *arguments) Much like setTimeout, invokes function after wait milliseconds. If
Page 2 of 12