mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-04 17:07:49 +00:00
Consistent use (always) of parentheses in arrow functions.
This commit is contained in:
@@ -34,7 +34,7 @@ function baseSortedIndex(array, value, retHighest) {
|
||||
}
|
||||
return high
|
||||
}
|
||||
return baseSortedIndexBy(array, value, value => value, retHighest)
|
||||
return baseSortedIndexBy(array, value, (value) => value, retHighest)
|
||||
}
|
||||
|
||||
export default baseSortedIndex
|
||||
|
||||
Reference in New Issue
Block a user