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); }); }