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

_.isTypedArray

_.isTypedArray(value) source npm package Checks if value is classified as a typed array. Since 3.0.0 Arguments value (*): The value to check. Returns (boolean): Returns true if value is a typed array, else false. Example _.isTypedArray(new Uint8Array); // => true   _.isTypedArray([]); // => false

_.method

_.method(path, [args]) source npm package Creates a function that invokes the method at path of a given object. Any additional arguments are provided to the invoked method. Since 3.7.0 Arguments path (Array|string): The path of the method to invoke. [args] (...*): The arguments to invoke the method with. Returns (Function): Returns the new invoker function. Example var objects = [   { 'a': { 'b': _.constant(2) } },   { 'a': { 'b': _.constant(1) } } ];   _.map(objects, _.method('a.b')); /

_.identity

_.identity(value) source npm package This method returns the first argument it receives. Since 0.1.0 Arguments value (*): Any value. Returns (*): Returns value. Example var object = { 'a': 1 };   console.log(_.identity(object) === object); // => true

_.sortedIndex

_.sortedIndex(array, value) source npm package Uses a binary search to determine the lowest index at which value should be inserted into array in order to maintain its sort order. Since 0.1.0 Arguments array (Array): The sorted array to inspect. value (*): The value to evaluate. Returns (number): Returns the index at which value should be inserted into array. Example _.sortedIndex([30, 50], 40); // => 1

_.map

_.map(collection, [iteratee=_.identity]) source npm package Creates an array of values by running each element in collection thru iteratee. The iteratee is invoked with three arguments:(value, index|key, collection).Many lodash methods are guarded to work as iteratees for methods like _.every, _.filter, _.map, _.mapValues, _.reject, and _.some.The guarded methods are:ary, chunk, curry, curryRight, drop, dropRight, every, fill, invert, parseInt, random, range, rangeRight, repeat, sampleSize, s

_.dropWhile

_.dropWhile(array, [predicate=_.identity]) source npm package Creates a slice of array excluding elements dropped from the beginning. Elements are dropped 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 },

_.lte

_.lte(value, other) source npm package Checks if value is less than or equal to other. Since 3.9.0 Arguments value (*): The value to compare. other (*): The other value to compare. Returns (boolean): Returns true if value is less than or equal to other, else false. Example _.lte(1, 3); // => true   _.lte(3, 3); // => true   _.lte(3, 1); // => false

_.isBuffer

_.isBuffer(value) source npm package Checks if value is a buffer. Since 4.3.0 Arguments value (*): The value to check. Returns (boolean): Returns true if value is a buffer, else false. Example _.isBuffer(new Buffer(2)); // => true   _.isBuffer(new Uint8Array(2)); // => false