Prevent failed circular reference detection in _.defaultsDeep. [closes #2537]

This commit is contained in:
John-David Dalton
2016-07-27 08:19:20 -07:00
parent 8b624217c5
commit 1966ac7979

View File

@@ -6115,7 +6115,6 @@
// Recursively merge objects and arrays (susceptible to call stack limits).
stack.set(srcValue, objValue);
baseMerge(objValue, srcValue, undefined, mergeDefaults, stack);
stack['delete'](srcValue);
}
return objValue;
}