Use args in _.merge where possible.

This commit is contained in:
John-David Dalton
2014-03-08 19:51:17 -08:00
parent 737e18d2de
commit 43efc930f4

View File

@@ -6691,7 +6691,7 @@
} else if (length > 2 && typeof args[length - 1] == 'function') {
callback = args[--length];
}
var sources = slice(arguments, 1, length),
var sources = slice(args, 1, length),
index = -1,
stackA = [],
stackB = [];