Skip to content

Commit

Permalink
%s/break/continue/
Browse files Browse the repository at this point in the history
  • Loading branch information
rcebulko committed May 11, 2021
1 parent eaa70b3 commit cb4bb8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/types/object.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit cb4bb8a

Please sign in to comment.