Always use parentheses in arrow functions (fixin 67a3fb9).

This commit is contained in:
Michał Lipiński
2017-05-18 20:33:55 +02:00
parent f659da740d
commit 0274d3dd2d

View File

@@ -211,7 +211,7 @@ function baseClone(value, bitmask, customizer, key, object, stack) {
}
if (tag == setTag) {
value.forEach(subValue => {
value.forEach((subValue) => {
result.add(baseClone(subValue, bitmask, customizer, subValue, value, stack))
})
return result