More _.isObject cleanup.

This commit is contained in:
John-David Dalton
2014-04-28 08:34:54 -07:00
parent 54a0de9b52
commit 68702ca43f

View File

@@ -6372,7 +6372,7 @@
// and avoid a V8 bug
// https://code.google.com/p/v8/issues/detail?id=2291
var type = typeof value;
return (type == 'function' || (value && type == 'object')) || false;
return type == 'function' || (value && type == 'object') || false;
}
/**