Bump to v4.13.0.

This commit is contained in:
John-David Dalton
2016-05-18 16:00:35 -07:00
parent 07c844053e
commit 35cdf6513b
513 changed files with 2603 additions and 2423 deletions

View File

@@ -1,5 +1,5 @@
import baseSortedIndex from './_baseSortedIndex';
import eq from './eq';
import baseSortedIndex from './_baseSortedIndex.js';
import eq from './eq.js';
/**
* This method is like `_.lastIndexOf` except that it performs a binary
@@ -14,7 +14,7 @@ import eq from './eq';
* @returns {number} Returns the index of the matched value, else `-1`.
* @example
*
* _.sortedLastIndexOf([1, 1, 2, 2], 2);
* _.sortedLastIndexOf([4, 5, 5, 5, 6], 5);
* // => 3
*/
function sortedLastIndexOf(array, value) {