Bump to v4.17.12.

This commit is contained in:
John-David Dalton
2019-07-09 13:46:20 -07:00
parent 349273409f
commit 51c827ffd9
11 changed files with 44 additions and 27 deletions

View File

@@ -22,8 +22,8 @@ function baseMerge(object, source, srcIndex, customizer, stack) {
return;
}
baseFor(source, function(srcValue, key) {
stack || (stack = new Stack);
if (isObject(srcValue)) {
stack || (stack = new Stack);
baseMergeDeep(object, source, key, srcIndex, baseMerge, customizer, stack);
}
else {