From 43efc930f47ad26821ec78c37881e311681a553e Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 8 Mar 2014 19:51:17 -0800 Subject: [PATCH] Use `args` in `_.merge` where possible. --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 6022bb8e5..ab8457ea7 100644 --- a/lodash.js +++ b/lodash.js @@ -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 = [];