_.isArray

_.isArray(value) source npm package Checks if value is classified as an Array object. Since 0.1.0 Arguments value (*): The value to check. Returns (boolean): Returns true if value is an array, else false. Example _.isArray([1, 2, 3]); // => true   _.isArray(document.body.children); // => false   _.isArray('abc'); // => false   _.isArray(_.noop); // => false

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

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

_.over

_.over([iteratees=[_.identity]]) source npm package Creates a function that invokes iteratees with the arguments it receives and returns their results. Since 4.0.0 Arguments [iteratees=[_.identity]] (...(Function|Function[])): The iteratees to invoke. Returns (Function): Returns the new function. Example var func = _.over([Math.max, Math.min]);   func(1, 2, 3, 4); // => [4, 1]

_.isObjectLike

_.isObjectLike(value) source npm package Checks if value is object-like. A value is object-like if it's not null and has a typeof result of "object". Since 4.0.0 Arguments value (*): The value to check. Returns (boolean): Returns true if value is object-like, else false. Example _.isObjectLike({}); // => true   _.isObjectLike([1, 2, 3]); // => true   _.isObjectLike(_.noop); // => false   _.isObjectLike(null); // => false

_.isMatchWith

_.isMatchWith(object, source, [customizer]) source npm package This method is like _.isMatch except that it accepts customizer which is invoked to compare values. If customizer returns undefined, comparisons are handled by the method instead. The customizer is invoked with five arguments: (objValue, srcValue, index|key, object, source). Since 4.0.0 Arguments object (Object): The object to inspect. source (Object): The object of property values to match. [customizer] (Function): The functio

_.isSymbol

_.isSymbol(value) source npm package Checks if value is classified as a Symbol primitive or object. Since 4.0.0 Arguments value (*): The value to check. Returns (boolean): Returns true if value is a symbol, else false. Example _.isSymbol(Symbol.iterator); // => true   _.isSymbol('abc'); // => false

_.noop

_.noop() source npm package This method returns undefined. Since 2.3.0 Example _.times(2, _.noop); // => [undefined, undefined]

_.invertBy

_.invertBy(object, [iteratee=_.identity]) source npm package This method is like _.invert except that the inverted object is generated from the results of running each element of object thru iteratee. The corresponding inverted value of each inverted key is an array of keys responsible for generating the inverted value. The iteratee is invoked with one argument: (value). Since 4.1.0 Arguments object (Object): The object to invert. [iteratee=_.identity] (Function): The iteratee invoked per e