xdbc 1.0.73 → 1.0.75

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.
package/dist/DBC/AE.js CHANGED
@@ -38,7 +38,7 @@ export class AE extends DBC {
38
38
  }
39
39
  return true; // In order for optional parameter to not cause an error if they are omitted.
40
40
  }
41
- for (let i = index; i <
41
+ for (let i = index ? index : 0; i <
42
42
  (idxEnd !== undefined
43
43
  ? idxEnd !== -1
44
44
  ? idxEnd + 1
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.73",
2
+ "version": "1.0.75",
3
3
  "name": "xdbc",
4
4
  "scripts": {
5
5
  "format": "biome format ./src --write",
package/src/DBC/AE.ts CHANGED
@@ -46,7 +46,7 @@ export class AE extends DBC {
46
46
  }
47
47
 
48
48
  for (
49
- let i = index;
49
+ let i = index ? index : 0;
50
50
  i <
51
51
  (idxEnd !== undefined
52
52
  ? idxEnd !== -1