From 702a82bb382c08fee21019b3abe59fb29d632765 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 3 May 2014 22:05:26 -0700 Subject: [PATCH] Remove `args` var from `_.at`. --- lodash.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lodash.js b/lodash.js index 13b9c2133..02cac1c28 100644 --- a/lodash.js +++ b/lodash.js @@ -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)) {