From fd176107ae7b057822e32206c6d28db17c946fa9 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 12 Sep 2014 00:03:07 -0700 Subject: [PATCH] Simplify `mixin` use. --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index cc0bd9038..75668fd24 100644 --- a/lodash.js +++ b/lodash.js @@ -9491,7 +9491,7 @@ lodash.unique = uniq; // add functions to `lodash.prototype` - mixin(lodash, baseAssign({}, lodash)); + mixin(lodash, lodash); /*------------------------------------------------------------------------*/