Minor var palcement nit.

This commit is contained in:
John-David Dalton
2016-07-19 17:58:38 -07:00
parent 801c4a56c3
commit 8d28a5ca3f

View File

@@ -3672,13 +3672,13 @@
while (++index < length) {
array[index] = args[start + index];
}
index = -1;
switch (start) {
case 0: return func.call(this, array);
case 1: return func.call(this, args[0], array);
case 2: return func.call(this, args[0], args[1], array);
}
var otherArgs = Array(start + 1);
index = -1;
while (++index < start) {
otherArgs[index] = args[index];
}