diff --git a/lodash.src.js b/lodash.src.js index 866c4f778..aaefaf3b2 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -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'); } /**