Remove references to _.

This commit is contained in:
John-David Dalton
2017-01-09 17:38:33 -08:00
parent 65654f8f9e
commit 77cc37ba49
410 changed files with 875 additions and 1157 deletions

View File

@@ -5,7 +5,6 @@ import baseSortedIndex from './_baseSortedIndex.js';
* should be inserted into `array` in order to maintain its sort order.
*
* @static
* @memberOf _
* @since 0.1.0
* @category Array
* @param {Array} array The sorted array to inspect.
@@ -14,7 +13,7 @@ import baseSortedIndex from './_baseSortedIndex.js';
* into `array`.
* @example
*
* _.sortedIndex([30, 50], 40);
* sortedIndex([30, 50], 40);
* // => 1
*/
function sortedIndex(array, value) {