diff options
Diffstat (limited to 'node_modules/lodash/partial.js')
-rw-r--r-- | node_modules/lodash/partial.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/node_modules/lodash/partial.js b/node_modules/lodash/partial.js index 85d653553..05fe8d3c8 100644 --- a/node_modules/lodash/partial.js +++ b/node_modules/lodash/partial.js @@ -4,7 +4,7 @@ var baseRest = require('./_baseRest'), replaceHolders = require('./_replaceHolders'); /** Used to compose bitmasks for function metadata. */ -var PARTIAL_FLAG = 32; +var WRAP_PARTIAL_FLAG = 32; /** * Creates a function that invokes `func` with `partials` prepended to the @@ -41,7 +41,7 @@ var PARTIAL_FLAG = 32; */ var partial = baseRest(function(func, partials) { var holders = replaceHolders(partials, getHolder(partial)); - return createWrap(func, PARTIAL_FLAG, undefined, partials, holders); + return createWrap(func, WRAP_PARTIAL_FLAG, undefined, partials, holders); }); // Assign default placeholders. |