Remove !source check from _.mixin.

This commit is contained in:
John-David Dalton
2014-08-04 00:05:19 -07:00
parent 48acda2c3c
commit d2444d2992

View File

@@ -8789,7 +8789,7 @@
props = noOpts && isObj && keys(source),
methodNames = props && baseFunctions(source, props);
if (!source || (props && props.length && !methodNames.length) || (noOpts && !isObj)) {
if ((props && props.length && !methodNames.length) || (noOpts && !isObj)) {
if (noOpts) {
options = source;
}