From 18f74aa5b2b8e1cc85a498f485d14882c25225b4 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 1 Feb 2016 22:13:38 -0800 Subject: [PATCH] Rename `spreadArgs` to `otherArgs`. --- lodash.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lodash.js b/lodash.js index 81573b54d..9529cf727 100644 --- a/lodash.js +++ b/lodash.js @@ -9069,12 +9069,12 @@ start = start === undefined ? 0 : nativeMax(toInteger(start), 0); return rest(function(args) { var array = args[start], - spreadArgs = args.slice(0, start); + otherArgs = args.slice(0, start); if (array) { - arrayPush(spreadArgs, array); + arrayPush(otherArgs, array); } - return apply(func, this, spreadArgs); + return apply(func, this, otherArgs); }); }