From cb4bb8a06b071e45d648963322edd365e650d2c6 Mon Sep 17 00:00:00 2001 From: Ryan Cebulko Date: Tue, 11 May 2021 18:01:40 -0400 Subject: [PATCH] %s/break/continue/ --- src/core/types/object.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/types/object.js b/src/core/types/object.js index fa1517395c78..a49dc0ced56a 100644 --- a/src/core/types/object.js +++ b/src/core/types/object.js @@ -128,7 +128,7 @@ export function deepMerge(target, source, depth = 10) { const oldValue = t[key]; if (isObject(newValue) && isObject(oldValue)) { queue.push({t: oldValue, s: newValue, d: d + 1}); - break; + continue; } } t[key] = newValue;