mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 15:27:50 +00:00
Remove args var from _.at.
This commit is contained in:
@@ -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)) {
|
||||
|
||||
Reference in New Issue
Block a user