_.prototype.next

_.prototype.next() source Gets the next value on a wrapped object following the iterator protocol. Since 4.0.0 Returns (Object): Returns the next iterator value. Example var wrapped = _([1, 2]);   wrapped.next(); // => { 'done': false, 'value': 1 }   wrapped.next(); // => { 'done': false, 'value': 2 }   wrapped.next(); // => { 'done': true, 'value': undefined }

_.fromPairs

_.fromPairs(pairs) source npm package The inverse of _.toPairs; this method returns an object composed from key-value pairs. Since 4.0.0 Arguments pairs (Array): The key-value pairs. Returns (Object): Returns the new object. Example _.fromPairs([['a', 1], ['b', 2]]); // => { 'a': 1, 'b': 2 }

_.toString

_.toString(value) source npm package Converts value to a string. An empty string is returned for null and undefined values. The sign of -0 is preserved. Since 4.0.0 Arguments value (*): The value to convert. Returns (string): Returns the converted string. Example _.toString(null); // => ''   _.toString(-0); // => '-0'   _.toString([1, 2, 3]); // => '1,2,3'

_.nthArg

_.nthArg([n=0]) source npm package Creates a function that gets the argument at index n. If n is negative, the nth argument from the end is returned. Since 4.0.0 Arguments [n=0] (number): The index of the argument to return. Returns (Function): Returns the new pass-thru function. Example var func = _.nthArg(1); func('a', 'b', 'c', 'd'); // => 'b'   var func = _.nthArg(-2); func('a', 'b', 'c', 'd'); // => 'c'

_.max

_.max(array) source npm package Computes the maximum value of array. If array is empty or falsey, undefined is returned. Since 0.1.0 Arguments array (Array): The array to iterate over. Returns (*): Returns the maximum value. Example _.max([4, 2, 8, 6]); // => 8   _.max([]); // => undefined

_.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]

_.matchesProperty

_.matchesProperty(path, srcValue) source npm package Creates a function that performs a partial deep comparison between the value at path of a given object to srcValue, returning true if the object value is equivalent, else false.Note: Partial comparisons will match empty array and empty object srcValue values against any array or object value, respectively. See _.isEqual for a list of supported value comparisons. Since 3.2.0 Arguments path (Array|string): The path of the property to get. s

_.delay

_.delay(func, wait, [args]) source npm package Invokes func after wait milliseconds. Any additional arguments are provided to func when it's invoked. Since 0.1.0 Arguments func (Function): The function to delay. wait (number): The number of milliseconds to delay invocation. [args] (...*): The arguments to invoke func with. Returns (number): Returns the timer id. Example _.delay(function(text) {   console.log(text); }, 1000, 'later'); // => Logs 'later' after one second.

_.multiply

_.multiply(multiplier, multiplicand) source npm package Multiply two numbers. Since 4.7.0 Arguments multiplier (number): The first number in a multiplication. multiplicand (number): The second number in a multiplication. Returns (number): Returns the product. Example _.multiply(6, 4); // => 24

_.endsWith

_.endsWith([string=''], [target], [position=string.length]) source npm package Checks if string ends with the given target string. Since 3.0.0 Arguments [string=''] (string): The string to inspect. [target] (string): The string to search for. [position=string.length] (number): The position to search up to. Returns (boolean): Returns true if string ends with target, else false. Example _.endsWith('abc', 'c'); // => true   _.endsWith('abc', 'b'); // => false   _.endsWith('abc', 'b',