From f999195f4707862dec527ee3905928c36ade9604 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 9 May 2014 02:12:16 -0700 Subject: [PATCH] Style nit on the IIFE used with `mixin`. --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index 3c3d9a1ee..5d6c156ee 100644 --- a/lodash.js +++ b/lodash.js @@ -8519,7 +8519,7 @@ lodash.include = contains; lodash.inject = reduce; - mixin(lodash, function() { + mixin(lodash, (function() { var source = {} baseForOwn(lodash, function(func, methodName) { if (!lodash.prototype[methodName]) { @@ -8527,7 +8527,7 @@ } }); return source; - }(), false); + }()), false); /*--------------------------------------------------------------------------*/