| Index: src/array.js
|
| diff --git a/src/array.js b/src/array.js
|
| index 55c59eb4a12ec9aa3af47ecc232bcce2df901b94..7a23fc8314f89a98180072b2141f7e5d1986d35a 100644
|
| --- a/src/array.js
|
| +++ b/src/array.js
|
| @@ -303,7 +303,7 @@ function SparseMove(array, start_i, del_count, len, num_additional_args) {
|
| if (!IS_UNDEFINED(current) || key in array) {
|
| var new_key = key - del_count + num_additional_args;
|
| new_array[new_key] = current;
|
| - if (new_key > 0xffffffff) {
|
| + if (new_key > 0xfffffffe) {
|
| big_indices = big_indices || new InternalArray();
|
| big_indices.push(new_key);
|
| }
|
|
|