From e85b0a81baa235be34e437dfc3028a69f2a7c82f Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 16 May 2014 00:11:19 -0700 Subject: [PATCH] Minor style nit in test.js. --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index 63206f1f2..77d2f8fcd 100644 --- a/test/test.js +++ b/test/test.js @@ -10,7 +10,7 @@ var maxSafeInteger = Math.pow(2, 53) - 1; /** Used as a reference to the global object */ - var root = typeof global == 'object' && global || this; + var root = (typeof global == 'object' && global) || this; /** Used to store Lo-Dash to test for bad extensions/shims */ var lodashBizarro = root.lodashBizarro;