mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-14 12:47:49 +00:00
Use args in _.merge where possible.
This commit is contained in:
@@ -6691,7 +6691,7 @@
|
|||||||
} else if (length > 2 && typeof args[length - 1] == 'function') {
|
} else if (length > 2 && typeof args[length - 1] == 'function') {
|
||||||
callback = args[--length];
|
callback = args[--length];
|
||||||
}
|
}
|
||||||
var sources = slice(arguments, 1, length),
|
var sources = slice(args, 1, length),
|
||||||
index = -1,
|
index = -1,
|
||||||
stackA = [],
|
stackA = [],
|
||||||
stackB = [];
|
stackB = [];
|
||||||
|
|||||||
Reference in New Issue
Block a user