_.shuffle

_.shuffle(collection) source npm package Creates an array of shuffled values, using a version of the Fisher-Yates shuffle. Since 0.1.0 Arguments collection (Array|Object): The collection to shuffle. Returns (Array): Returns the new shuffled array. Example _.shuffle([1, 2, 3, 4]); // => [4, 1, 3, 2]

_.capitalize

_.capitalize([string='']) source npm package Converts the first character of string to upper case and the remaining to lower case. Since 3.0.0 Arguments [string=''] (string): The string to capitalize. Returns (string): Returns the capitalized string. Example _.capitalize('FRED'); // => 'Fred'

_.pick

_.pick(object, [paths]) source npm package Creates an object composed of the picked object properties. Since 0.1.0 Arguments object (Object): The source object. [paths] (...(string|string[])): The property paths to pick. Returns (Object): Returns the new object. Example var object = { 'a': 1, 'b': '2', 'c': 3 };   _.pick(object, ['a', 'c']); // => { 'a': 1, 'c': 3 }

_.sum

_.sum(array) source npm package Computes the sum of the values in array. Since 3.4.0 Arguments array (Array): The array to iterate over. Returns (number): Returns the sum. Example _.sum([4, 2, 8, 6]); // => 20

_.reduce

_.reduce(collection, [iteratee=_.identity], [accumulator]) source npm package Reduces collection to a value which is the accumulated result of running each element in collection thru iteratee, where each successive invocation is supplied the return value of the previous. If accumulator is not given, the first element of collection is used as the initial value. The iteratee is invoked with four arguments:(accumulator, value, index|key, collection).Many lodash methods are guarded to work as ite

_.prototype.plant

_.prototype.plant(value) source Creates a clone of the chain sequence planting value as the wrapped value. Since 3.2.0 Arguments value (*): The value to plant. Returns (Object): Returns the new lodash wrapper instance. Example function square(n) {   return n * n; }   var wrapped = _([1, 2]).map(square); var other = wrapped.plant([3, 4]);   other.value(); // => [9, 16]   wrapped.value(); // => [1, 4]

_.set

_.set(object, path, value) source npm package Sets the value at path of object. If a portion of path doesn't exist, it's created. Arrays are created for missing index properties while objects are created for all other missing properties. Use _.setWith to customize path creation.Note: This method mutates object. Since 3.7.0 Arguments object (Object): The object to modify. path (Array|string): The path of the property to set. value (*): The value to set. Returns (Object): Returns object. E

_.divide

_.divide(dividend, divisor) source npm package Divide two numbers. Since 4.7.0 Arguments dividend (number): The first number in a division. divisor (number): The second number in a division. Returns (number): Returns the quotient. Example _.divide(6, 4); // => 1.5

_.templateSettings.evaluate

_.templateSettings.evaluate source (RegExp): Used to detect code to be evaluated.

_.stubFalse

_.stubFalse() source npm package This method returns false. Since 4.13.0 Returns (boolean): Returns false. Example _.times(2, _.stubFalse); // => [false, false]