Fix DOMException in _.merge. [closes #895]

This commit is contained in:
jdalton
2015-01-28 09:55:42 -08:00
parent c888319f22
commit 24810aeca3

View File

@@ -2537,6 +2537,9 @@
? toPlainObject(value)
: (isPlainObject(value) ? value : {});
}
else {
isCommon = false;
}
}
// Add the source value to the stack of traversed objects and associate
// it with its merged value.