mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-13 04:17:49 +00:00
Style nit on the IIFE used with mixin.
This commit is contained in:
@@ -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);
|
||||||
|
|
||||||
/*--------------------------------------------------------------------------*/
|
/*--------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user