constant_.constant(value) Creates a function that returns the same value that is used as the argument of _.constant.
escape_.escape(string) Escapes a string for insertion into HTML, replacing &, <, >, "
zip_.zip(*arrays) Merges together the values of each of the arrays with the values at the corresponding position. Useful when
rest_.rest(array, [index]) Alias: tail, drop Returns the rest of the elements in an array
create_.create(prototype, props) Creates a new object with the given prototype, optionally attaching props as own properties
some_.some(list, [predicate], [context]) Alias: any Returns true if any of the values in
indexBy_.indexBy(list, iteratee, [context]) Given a list, and an iteratee function that returns a key for each element
template_.template(templateString, [settings]) Compiles JavaScript templates into functions that can be evaluated for rendering.
reduce_.reduce(list, iteratee, [memo], [context]) Aliases: inject, foldl Also known as inject
isString_.isString(object) Returns true if object is a String.
Page 7 of 12