@tstdl/base 0.87.12 → 0.87.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -100,7 +100,9 @@ class ArrayList extends import_list.List {
100
100
  }
101
101
  _removeAt(index) {
102
102
  if (index == 0) {
103
- return this.backingArray.shift();
103
+ const value = this.backingArray.shift();
104
+ this.updateSize();
105
+ return value;
104
106
  }
105
107
  return this.removeManyAt(index, 1)[0];
106
108
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tstdl/base",
3
- "version": "0.87.12",
3
+ "version": "0.87.13",
4
4
  "author": "Patrick Hein",
5
5
  "publishConfig": {
6
6
  "access": "public"