mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-03 16:47:49 +00:00
Remove semicolons.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import baseSortedIndex from './.internal/baseSortedIndex.js';
|
||||
import baseSortedIndex from './.internal/baseSortedIndex.js'
|
||||
|
||||
/**
|
||||
* This method is like `sortedIndex` except that it returns the highest
|
||||
@@ -13,11 +13,11 @@ import baseSortedIndex from './.internal/baseSortedIndex.js';
|
||||
* into `array`.
|
||||
* @example
|
||||
*
|
||||
* sortedLastIndex([4, 5, 5, 5, 6], 5);
|
||||
* sortedLastIndex([4, 5, 5, 5, 6], 5)
|
||||
* // => 4
|
||||
*/
|
||||
function sortedLastIndex(array, value) {
|
||||
return baseSortedIndex(array, value, true);
|
||||
return baseSortedIndex(array, value, true)
|
||||
}
|
||||
|
||||
export default sortedLastIndex;
|
||||
export default sortedLastIndex
|
||||
|
||||
Reference in New Issue
Block a user