Minor style nit in _.isObject.

This commit is contained in:
jdalton
2015-05-14 21:27:11 -07:00
parent 49ef2b4d54
commit 6af7fac344

View File

@@ -8880,7 +8880,7 @@
// Avoid a V8 JIT bug in Chrome 19-20.
// See https://code.google.com/p/v8/issues/detail?id=2291 for more details.
var type = typeof value;
return type == 'function' || (!!value && type == 'object');
return !!value && (type == 'object' || type == 'function');
}
/**