From 68702ca43ff973a752c8e5ee26a6437f4ff8b4e9 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 28 Apr 2014 08:34:54 -0700 Subject: [PATCH] More `_.isObject` cleanup. --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } /**