Remove args var from _.at.

This commit is contained in:
John-David Dalton
2014-05-03 22:05:26 -07:00
parent a5e91385b0
commit 702a82bb38

View File

@@ -3611,9 +3611,8 @@
* // => ['fred', 'pebbles']
*/
function at(collection) {
var args = arguments,
index = -1,
props = baseFlatten(args, true, false, 1),
var index = -1,
props = baseFlatten(arguments, true, false, 1),
length = props.length;
if (support.unindexedChars && isString(collection)) {