_.mean

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

_.clamp

_.clamp(number, [lower], upper) source npm package Clamps number within the inclusive lower and upper bounds. Since 4.0.0 Arguments number (number): The number to clamp. [lower] (number): The lower bound. upper (number): The upper bound. Returns (number): Returns the clamped number. Example _.clamp(-10, -5, 5); // => -5   _.clamp(10, -5, 5); // => 5

_.toFinite

_.toFinite(value) source npm package Converts value to a finite number. Since 4.12.0 Arguments value (*): The value to convert. Returns (number): Returns the converted number. Example _.toFinite(3.2); // => 3.2   _.toFinite(Number.MIN_VALUE); // => 5e-324   _.toFinite(Infinity); // => 1.7976931348623157e+308   _.toFinite('3.2'); // => 3.2

_.templateSettings

_.templateSettings source npm package (Object): By default, the template delimiters used by lodash are like those in embedded Ruby (ERB). Change the following template settings to use alternative delimiters.

_.takeWhile

_.takeWhile(array, [predicate=_.identity]) source npm package Creates a slice of array with elements taken from the beginning. Elements are taken until predicate returns falsey. The predicate is invoked with three arguments: (value, index, array). Since 3.0.0 Arguments array (Array): The array to query. [predicate=_.identity] (Function): The function invoked per iteration. Returns (Array): Returns the slice of array. Example var users = [   { 'user': 'barney',  'active': false },   { 'us

_.flow

_.flow([funcs]) source npm package Creates a function that returns the result of invoking the given functions with the this binding of the created function, where each successive invocation is supplied the return value of the previous. 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 = _.flow([_.add, square]); addSquare(1, 2); // => 9

_.reverse

_.reverse(array) source npm package Reverses array so that the first element becomes the last, the second element becomes the second to last, and so on.Note: This method mutates array and is based on Array#reverse. Since 4.0.0 Arguments array (Array): The array to modify. Returns (Array): Returns array. Example var array = [1, 2, 3];   _.reverse(array); // => [3, 2, 1]   console.log(array); // => [3, 2, 1]

_.tap

_.tap(value, interceptor) source This method invokes interceptor and returns value. The interceptor is invoked with one argument; (value). The purpose of this method is to "tap into" a method chain sequence in order to modify intermediate results. Since 0.1.0 Arguments value (*): The value to provide to interceptor. interceptor (Function): The function to invoke. Returns (*): Returns value. Example _([1, 2, 3])  .tap(function(array) { // Mutate input array.    array.pop();  })  .reverse()

_.stubString

_.stubString() source npm package This method returns an empty string. Since 4.13.0 Returns (string): Returns the empty string. Example _.times(2, _.stubString); // => ['', '']

_.toPath

_.toPath(value) source npm package Converts value to a property path array. Since 4.0.0 Arguments value (*): The value to convert. Returns (Array): Returns the new property path array. Example _.toPath('a.b.c'); // => ['a', 'b', 'c']   _.toPath('a[0].b.c'); // => ['a', '0', 'b', 'c']