From 24810aeca380aea7518eb73aef0acb735c857e7d Mon Sep 17 00:00:00 2001 From: jdalton Date: Wed, 28 Jan 2015 09:55:42 -0800 Subject: [PATCH] Fix DOMException in `_.merge`. [closes #895] --- lodash.src.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lodash.src.js b/lodash.src.js index eb5d9ba40..bd7e17321 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -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.