clarity-pattern-parser 10.1.12 → 10.1.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.
@@ -1062,7 +1062,7 @@
1062
1062
  }
1063
1063
  pattern = pattern.parent;
1064
1064
  }
1065
- return count % 2 === 0;
1065
+ return count % 2 === 1;
1066
1066
  }
1067
1067
  getTokens() {
1068
1068
  const tokens = [];
package/dist/index.esm.js CHANGED
@@ -1056,7 +1056,7 @@ class Options {
1056
1056
  }
1057
1057
  pattern = pattern.parent;
1058
1058
  }
1059
- return count % 2 === 0;
1059
+ return count % 2 === 1;
1060
1060
  }
1061
1061
  getTokens() {
1062
1062
  const tokens = [];
package/dist/index.js CHANGED
@@ -1060,7 +1060,7 @@ class Options {
1060
1060
  }
1061
1061
  pattern = pattern.parent;
1062
1062
  }
1063
- return count % 2 === 0;
1063
+ return count % 2 === 1;
1064
1064
  }
1065
1065
  getTokens() {
1066
1066
  const tokens = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clarity-pattern-parser",
3
- "version": "10.1.12",
3
+ "version": "10.1.13",
4
4
  "description": "Parsing Library for Typescript and Javascript.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.esm.js",