Skip to content

Commit

Permalink
Use args in _.merge where possible.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdalton committed Mar 9, 2014
1 parent 51b3745 commit abb9c56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lodash.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [];
Expand Down

0 comments on commit abb9c56

Please sign in to comment.