From 2a9f9f7ebd97e61f0c002756772f6c448bc6832c Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 7 Nov 2014 13:01:36 -0800 Subject: [PATCH] Don't set data on functions created by a curried function. --- lodash.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lodash.js b/lodash.js index cbabbc8be..05f475631 100644 --- a/lodash.js +++ b/lodash.js @@ -2729,7 +2729,6 @@ } var result = createHybridWrapper(func, bitmask, thisArg, newPartials, newsHolders, newPartialsRight, newHoldersRight, newArgPos, newArity); result.placeholder = placeholder; - defer(setData, result, [func, bitmask, thisArg, newPartials, newsHolders, newPartialsRight, newHoldersRight, newArgPos, newArity]); return result; } }