Bump to v4.17.11.

This commit is contained in:
John-David Dalton
2018-09-11 22:29:45 -07:00
parent bbcefc5447
commit db0dbd39a7
6 changed files with 29 additions and 28 deletions

View File

@@ -63,7 +63,7 @@ define(['./_assignMergeValue', './_cloneBuffer', './_cloneTypedArray', './_copyA
if (isArguments(objValue)) {
newValue = toPlainObject(objValue);
}
else if (!isObject(objValue) || (srcIndex && isFunction(objValue))) {
else if (!isObject(objValue) || isFunction(objValue)) {
newValue = initCloneObject(srcValue);
}
}