Bump to v4.17.11.

This commit is contained in:
John-David Dalton
2018-09-11 22:42:07 -07:00
parent cc483eda91
commit 349273409f
6 changed files with 11 additions and 9 deletions

View File

@@ -74,7 +74,7 @@ function baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, sta
if (isArguments(objValue)) {
newValue = toPlainObject(objValue);
}
else if (!isObject(objValue) || (srcIndex && isFunction(objValue))) {
else if (!isObject(objValue) || isFunction(objValue)) {
newValue = initCloneObject(srcValue);
}
}