mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-02 08:07:50 +00:00
Consistent use (always) of parentheses in arrow functions.
This commit is contained in:
@@ -31,7 +31,7 @@ function pullAt(array, ...indexes) {
|
||||
const length = array == null ? 0 : array.length
|
||||
const result = baseAt(array, indexes)
|
||||
|
||||
basePullAt(array, arrayMap(indexes, index => isIndex(index, length) ? +index : index).sort(compareAscending))
|
||||
basePullAt(array, arrayMap(indexes, (index) => isIndex(index, length) ? +index : index).sort(compareAscending))
|
||||
return result
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user