mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-04 00:57:48 +00:00
Consistent use (always) of parentheses in arrow functions.
This commit is contained in:
@@ -30,7 +30,7 @@ function baseDifference(array, values, iteratee, comparator) {
|
||||
return result
|
||||
}
|
||||
if (iteratee) {
|
||||
values = arrayMap(values, value => iteratee(value))
|
||||
values = arrayMap(values, (value) => iteratee(value))
|
||||
}
|
||||
if (comparator) {
|
||||
includes = arrayIncludesWith
|
||||
|
||||
Reference in New Issue
Block a user