| Index: src/array.js
|
| diff --git a/src/array.js b/src/array.js
|
| index 5e3e72dc8d797315ff0d6afdb26c5cfba06d1492..326eedd336bd49ba0c1c4df7218b735040bf1c8d 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);
|
| }
|
|
|