mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-10 02:47:50 +00:00
Fix accidental leaked var.
This commit is contained in:
@@ -5865,7 +5865,7 @@
|
|||||||
function bindKey(object, key) {
|
function bindKey(object, key) {
|
||||||
var bitmask = BIND_FLAG | BIND_KEY_FLAG;
|
var bitmask = BIND_FLAG | BIND_KEY_FLAG;
|
||||||
if (arguments.length > 2) {
|
if (arguments.length > 2) {
|
||||||
var args = slice(arguments, 2);
|
var args = slice(arguments, 2),
|
||||||
holders = replaceHolders(args, bindKey.placeholder);
|
holders = replaceHolders(args, bindKey.placeholder);
|
||||||
}
|
}
|
||||||
return args
|
return args
|
||||||
|
|||||||
Reference in New Issue
Block a user