From 0274d3dd2d3ed42f8ae6eb764150c8c59a812d8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Lipi=C5=84ski?= Date: Thu, 18 May 2017 20:33:55 +0200 Subject: [PATCH] Always use parentheses in arrow functions (fixin 67a3fb9). --- .internal/baseClone.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.internal/baseClone.js b/.internal/baseClone.js index 7cedb971b..4267a4d79 100644 --- a/.internal/baseClone.js +++ b/.internal/baseClone.js @@ -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