mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 17:37:50 +00:00
Consistent use (always) of parentheses in arrow functions.
This commit is contained in:
@@ -27,7 +27,7 @@ function basePullAll(array, values, iteratee, comparator) {
|
||||
values = copyArray(values)
|
||||
}
|
||||
if (iteratee) {
|
||||
seen = arrayMap(array, value => iteratee(value))
|
||||
seen = arrayMap(array, (value) => iteratee(value))
|
||||
}
|
||||
while (++index < length) {
|
||||
let fromIndex = 0
|
||||
|
||||
Reference in New Issue
Block a user