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
value_.chain(obj).value() Extracts the value of a wrapped object.
chain_.chain(obj) Returns a wrapped object. Calling methods on this object will continue to return wrapped objects until value
intersection_.intersection(*arrays) Computes the list of values that are the intersection of all the arrays. Each value in
values_.values(object) Return all of the values of the object's own properties.
Page 1 of 12