diff --git a/lodash.js b/lodash.js index d0cd18109..47f0db1aa 100644 --- a/lodash.js +++ b/lodash.js @@ -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; } /**