before_.before(count, function) Creates a version of the function that can be called no more than count times. The result
property_.property(key) Returns a function that will itself return the key property of any passed-in object.
invoke_.invoke(list, methodName, *arguments) Calls the method named by methodName on each value in the list. Any extra
result_.result(object, property, [defaultValue]) If the value of the named property is a function then invoke it with the
find_.find(list, predicate, [context]) Alias: detect Looks through each value in the list
difference_.difference(array, *others) Similar to without, but returns the values from array that are not present in
isEmpty_.isEmpty(object) Returns true if an enumerable object contains no values (no enumerable own-properties). For
noop_.noop() Returns undefined irrespective of the arguments passed to it. Useful as the default for optional callback arguments
contains_.contains(list, value, [fromIndex]) Alias: includes Returns true if the value
pluck_.pluck(list, propertyName) A convenient version of what is perhaps the most common use-case for map: extracting a list
Page 4 of 12