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); /*--------------------------------------------------------------------------*/