mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 01:17:50 +00:00
Consistent use (always) of parentheses in arrow functions.
This commit is contained in:
@@ -24,7 +24,7 @@ import arraySome from './.internal/arraySome.js'
|
||||
*/
|
||||
function overSome(iteratees) {
|
||||
return function(...args) {
|
||||
return arraySome(iteratees, iteratee => iteratee.apply(this, args))
|
||||
return arraySome(iteratees, (iteratee) => iteratee.apply(this, args))
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user