_.pull

_.pull(array, [values]) source npm package Removes all given values from array using SameValueZero for equality comparisons.Note: Unlike _.without, this method mutates array. Use _.remove to remove elements from an array by predicate. Since 2.0.0 Arguments array (Array): The array to modify. [values] (...*): The values to remove. Returns (Array): Returns array. Example var array = ['a', 'b', 'c', 'a', 'b', 'c'];   _.pull(array, 'a', 'c'); console.log(array); // => ['b', 'b']

_.slice

_.slice(array, [start=0], [end=array.length]) source npm package Creates a slice of array from start up to, but not including, end.Note: This method is used instead of Array#slice to ensure dense arrays are returned. Since 3.0.0 Arguments array (Array): The array to slice. [start=0] (number): The start position. [end=array.length] (number): The end position. Returns (Array): Returns the slice of array.

_.isFinite

_.isFinite(value) source npm package Checks if value is a finite primitive number.Note: This method is based on Number.isFinite. Since 0.1.0 Arguments value (*): The value to check. Returns (boolean): Returns true if value is a finite number, else false. Example _.isFinite(3); // => true   _.isFinite(Number.MIN_VALUE); // => true   _.isFinite(Infinity); // => false   _.isFinite('3'); // => false

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

_.toUpper

_.toUpper([string='']) source npm package Converts string, as a whole, to upper case just like String#toUpperCase. Since 4.0.0 Arguments [string=''] (string): The string to convert. Returns (string): Returns the upper cased string. Example _.toUpper('--foo-bar--'); // => '--FOO-BAR--'   _.toUpper('fooBar'); // => 'FOOBAR'   _.toUpper('__foo_bar__'); // => '__FOO_BAR__'

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

_.minBy

_.minBy(array, [iteratee=_.identity]) source npm package This method is like _.min except that it accepts iteratee which is invoked for each element in array to generate the criterion by which the value is ranked. The iteratee is invoked with one argument: (value). Since 4.0.0 Arguments array (Array): The array to iterate over. [iteratee=_.identity] (Function): The iteratee invoked per element. Returns (*): Returns the minimum value. Example var objects = [{ 'n': 1 }, { 'n': 2 }];   _.min

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