@zoodogood/utils 1.2.0-change.1444 → 1.2.1-change.1449

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.
@@ -178,7 +178,7 @@ export class CliParser {
178
178
  const { context: bracketsContext, indexes } = context.brackets.parseSafe(context.input);
179
179
  const groups = context.brackets.findPrimaryGroups(bracketsContext);
180
180
  let offset = 0;
181
- for (const index in groups) {
181
+ for (let index = 0; index < groups.length; index++) {
182
182
  const group = groups[index];
183
183
  const replacement = context.brackets.toStringGroup(indexes[index]);
184
184
  const length = group.length;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@zoodogood/utils",
3
3
  "type": "module",
4
- "version": "1.2.0-change.1444",
4
+ "version": "1.2.1-change.1449",
5
5
  "description": "",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",