aboutsummaryrefslogtreecommitdiff
path: root/node_modules/lodash/curryRight.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/lodash/curryRight.js')
-rw-r--r--node_modules/lodash/curryRight.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/node_modules/lodash/curryRight.js b/node_modules/lodash/curryRight.js
index 2b7691fa6..c85b6f339 100644
--- a/node_modules/lodash/curryRight.js
+++ b/node_modules/lodash/curryRight.js
@@ -1,7 +1,7 @@
var createWrap = require('./_createWrap');
/** Used to compose bitmasks for function metadata. */
-var CURRY_RIGHT_FLAG = 16;
+var WRAP_CURRY_RIGHT_FLAG = 16;
/**
* This method is like `_.curry` except that arguments are applied to `func`
@@ -43,7 +43,7 @@ var CURRY_RIGHT_FLAG = 16;
*/
function curryRight(func, arity, guard) {
arity = guard ? undefined : arity;
- var result = createWrap(func, CURRY_RIGHT_FLAG, undefined, undefined, undefined, undefined, undefined, arity);
+ var result = createWrap(func, WRAP_CURRY_RIGHT_FLAG, undefined, undefined, undefined, undefined, undefined, arity);
result.placeholder = curryRight.placeholder;
return result;
}