process.mixin: Return instead of continue in forEach
This commit is contained in:
parent
c69d3f4a35
commit
93c0c24a4e
@ -136,7 +136,7 @@ process.mixin = function() {
|
||||
else {
|
||||
// Prevent never-ending loop
|
||||
if (target === d.value) {
|
||||
continue;
|
||||
return;
|
||||
}
|
||||
|
||||
if (deep && d.value && typeof d.value === "object") {
|
||||
|
Loading…
x
Reference in New Issue
Block a user