_.startsWith

_.startsWith([string=''], [target], [position=0]) source npm package Checks if string starts with the given target string. Since 3.0.0 Arguments [string=''] (string): The string to inspect. [target] (string): The string to search for. [position=0] (number): The position to search from. Returns (boolean): Returns true if string starts with target, else false. Example _.startsWith('abc', 'a'); // => true   _.startsWith('abc', 'b'); // => false   _.startsWith('abc', 'b', 1); // => 

_.startCase

_.startCase([string='']) source npm package Converts string to start case. Since 3.1.0 Arguments [string=''] (string): The string to convert. Returns (string): Returns the start cased string. Example _.startCase('--foo-bar--'); // => 'Foo Bar'   _.startCase('fooBar'); // => 'Foo Bar'   _.startCase('__FOO_BAR__'); // => 'FOO BAR'

_.spread

_.spread(func, [start=0]) source npm package Creates a function that invokes func with the this binding of the create function and an array of arguments much like Function#apply.Note: This method is based on the spread operator. Since 3.2.0 Arguments func (Function): The function to spread arguments over. [start=0] (number): The start position of the spread. Returns (Function): Returns the new function. Example var say = _.spread(function(who, what) {   return who + ' says ' + what; });  

_.split

_.split([string=''], separator, [limit]) source npm package Splits string by separator.Note: This method is based on String#split. Since 4.0.0 Arguments [string=''] (string): The string to split. separator (RegExp|string): The separator pattern to split by. [limit] (number): The length to truncate results to. Returns (Array): Returns the string segments. Example _.split('a-b-c', '-', 2); // => ['a', 'b']

_.sortedUniqBy

_.sortedUniqBy(array, [iteratee]) source npm package This method is like _.uniqBy except that it's designed and optimized for sorted arrays. Since 4.0.0 Arguments array (Array): The array to inspect. [iteratee] (Function): The iteratee invoked per element. Returns (Array): Returns the new duplicate free array. Example _.sortedUniqBy([1.1, 1.2, 2.3, 2.4], Math.floor); // => [1.1, 2.3]

_.sortedUniq

_.sortedUniq(array) source npm package This method is like _.uniq except that it's designed and optimized for sorted arrays. Since 4.0.0 Arguments array (Array): The array to inspect. Returns (Array): Returns the new duplicate free array. Example _.sortedUniq([1, 1, 2]); // => [1, 2]

_.sortedLastIndexOf

_.sortedLastIndexOf(array, value) source npm package This method is like _.lastIndexOf except that it performs a binary search on a sorted array. Since 4.0.0 Arguments array (Array): The array to inspect. value (*): The value to search for. Returns (number): Returns the index of the matched value, else -1. Example _.sortedLastIndexOf([4, 5, 5, 5, 6], 5); // => 3

_.sortedLastIndexBy

_.sortedLastIndexBy(array, value, [iteratee=_.identity]) source npm package This method is like _.sortedLastIndex except that it accepts iteratee which is invoked for value and each element of array to compute their sort ranking. The iteratee is invoked with one argument: (value). Since 4.0.0 Arguments array (Array): The sorted array to inspect. value (*): The value to evaluate. [iteratee=_.identity] (Function): The iteratee invoked per element. Returns (number): Returns the index at whi

_.sortedLastIndex

_.sortedLastIndex(array, value) source npm package This method is like _.sortedIndex except that it returns the highest index at which value should be inserted into array in order to maintain its sort order. Since 3.0.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 _.sortedLastIndex([4, 5, 5, 5, 6], 5); // => 4

_.sortedIndexOf

_.sortedIndexOf(array, value) source npm package This method is like _.indexOf except that it performs a binary search on a sorted array. Since 4.0.0 Arguments array (Array): The array to inspect. value (*): The value to search for. Returns (number): Returns the index of the matched value, else -1. Example _.sortedIndexOf([4, 5, 5, 5, 6], 5); // => 1