Style nit on the IIFE used with mixin.

This commit is contained in:
John-David Dalton
2014-05-09 02:12:16 -07:00
parent 9b920cf813
commit f999195f47

View File

@@ -8519,7 +8519,7 @@
lodash.include = contains; lodash.include = contains;
lodash.inject = reduce; lodash.inject = reduce;
mixin(lodash, function() { mixin(lodash, (function() {
var source = {} var source = {}
baseForOwn(lodash, function(func, methodName) { baseForOwn(lodash, function(func, methodName) {
if (!lodash.prototype[methodName]) { if (!lodash.prototype[methodName]) {
@@ -8527,7 +8527,7 @@
} }
}); });
return source; return source;
}(), false); }()), false);
/*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/