mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-07 01:57:50 +00:00
Remove semicolons.
This commit is contained in:
@@ -9,13 +9,13 @@
|
||||
* @returns {number} Returns the index of the matched value, else `-1`.
|
||||
*/
|
||||
function strictLastIndexOf(array, value, fromIndex) {
|
||||
let index = fromIndex + 1;
|
||||
let index = fromIndex + 1
|
||||
while (index--) {
|
||||
if (array[index] === value) {
|
||||
return index;
|
||||
return index
|
||||
}
|
||||
}
|
||||
return index;
|
||||
return index
|
||||
}
|
||||
|
||||
export default strictLastIndexOf;
|
||||
export default strictLastIndexOf
|
||||
|
||||
Reference in New Issue
Block a user