_.snakeCase

_.snakeCase([string='']) source npm package Converts string to snake case. Since 3.0.0 Arguments [string=''] (string): The string to convert. Returns (string): Returns the snake cased string. Example _.snakeCase('Foo Bar'); // => 'foo_bar'   _.snakeCase('fooBar'); // => 'foo_bar'   _.snakeCase('--FOO-BAR--'); // => 'foo_bar'

_.upperCase

_.upperCase([string='']) source npm package Converts string, as space separated words, to upper case. Since 4.0.0 Arguments [string=''] (string): The string to convert. Returns (string): Returns the upper cased string. Example _.upperCase('--foo-bar'); // => 'FOO BAR'   _.upperCase('fooBar'); // => 'FOO BAR'   _.upperCase('__foo_bar__'); // => 'FOO BAR'

_.unescape

_.unescape([string='']) source npm package The inverse of _.escape; this method converts the HTML entities &ampamp;, &amplt;, &ampgt;, &ampquot;, and &amp#39; in string to their corresponding characters.Note: No other HTML entities are unescaped. To unescape additional HTML entities use a third-party library like he. Since 0.6.0 Arguments [string=''] (string): The string to unescape. Returns (string): Returns the unescaped string. Example _.unescape('fred, barney, &a

_.flowRight

_.flowRight([funcs]) source npm package This method is like _.flow except that it creates a function that invokes the given functions from right to left. Since 3.0.0 Arguments [funcs] (...(Function|Function[])): The functions to invoke. Returns (Function): Returns the new composite function. Example function square(n) {   return n * n; }   var addSquare = _.flowRight([square, _.add]); addSquare(1, 2); // => 9

_.times

_.times(n, [iteratee=_.identity]) source npm package Invokes the iteratee n times, returning an array of the results of each invocation. The iteratee is invoked with one argument; (index). Since 0.1.0 Arguments n (number): The number of times to invoke iteratee. [iteratee=_.identity] (Function): The function invoked per iteration. Returns (Array): Returns the array of results. Example _.times(3, String); // => ['0', '1', '2']    _.times(4, _.constant(0)); // => [0, 0, 0, 0]

_.sampleSize

_.sampleSize(collection, [n=1]) source npm package Gets n random elements at unique keys from collection up to the size of collection. Since 4.0.0 Arguments collection (Array|Object): The collection to sample. [n=1] (number): The number of elements to sample. Returns (Array): Returns the random elements. Example _.sampleSize([1, 2, 3], 2); // => [3, 1]   _.sampleSize([1, 2, 3], 4); // => [2, 3, 1]

_.omit

_.omit(object, [paths]) source npm package The opposite of _.pick; this method creates an object composed of the own and inherited enumerable property paths of object that are not omitted.Note: This method is considerably slower than _.pick. Since 0.1.0 Arguments object (Object): The source object. [paths] (...(string|string[])): The property paths to omit. Returns (Object): Returns the new object. Example var object = { 'a': 1, 'b': '2', 'c': 3 };   _.omit(object, ['a', 'c']); // => {

_.chain

_.chain(value) source Creates a lodash wrapper instance that wraps value with explicit method chain sequences enabled. The result of such sequences must be unwrapped with _#value. Since 1.3.0 Arguments value (*): The value to wrap. Returns (Object): Returns the new lodash wrapper instance. Example var users = [   { 'user': 'barney',  'age': 36 },   { 'user': 'fred',    'age': 40 },   { 'user': 'pebbles', 'age': 1 } ];   var youngest = _   .chain(users)   .sortBy('age')   .map(function(o) {

_.toInteger

_.toInteger(value) source npm package Converts value to an integer.Note: This method is loosely based on ToInteger. Since 4.0.0 Arguments value (*): The value to convert. Returns (number): Returns the converted integer. Example _.toInteger(3.2); // => 3   _.toInteger(Number.MIN_VALUE); // => 0   _.toInteger(Infinity); // => 1.7976931348623157e+308   _.toInteger('3.2'); // => 3

_.defaultsDeep

_.defaultsDeep(object, [sources]) source npm package This method is like _.defaults except that it recursively assigns default properties.Note: This method mutates object. Since 3.10.0 Arguments object (Object): The destination object. [sources] (...Object): The source objects. Returns (Object): Returns object. Example _.defaultsDeep({ 'a': { 'b': 2 } }, { 'a': { 'b': 1, 'c': 3 } }); // => { 'a': { 'b': 2, 'c': 3 } }