process.mixin: Return instead of continue in forEach

This commit is contained in:
Ryan Dahl 2010-03-09 10:54:26 -08:00
parent c69d3f4a35
commit 93c0c24a4e

View File

@ -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") {