mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 09:27:49 +00:00
Consistent use (always) of parentheses in arrow functions.
This commit is contained in:
@@ -25,7 +25,7 @@ function unzipWith(array, iteratee) {
|
||||
return []
|
||||
}
|
||||
const result = unzip(array)
|
||||
return arrayMap(result, group => iteratee.apply(undefined, group))
|
||||
return arrayMap(result, (group) => iteratee.apply(undefined, group))
|
||||
}
|
||||
|
||||
export default unzipWith
|
||||
|
||||
Reference in New Issue
Block a user