meriyah 4.3.1 → 4.3.2

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.
@@ -1474,7 +1474,7 @@
1474
1474
  function scanIdentifier(parser, context, isValidAsKeyword) {
1475
1475
  while (isIdPart[advanceChar(parser)]) { }
1476
1476
  parser.tokenValue = parser.source.slice(parser.tokenPos, parser.index);
1477
- return parser.currentChar !== 92 && parser.currentChar < 0x7e
1477
+ return parser.currentChar !== 92 && parser.currentChar <= 0x7e
1478
1478
  ? descKeywordTable[parser.tokenValue] || 208897
1479
1479
  : scanIdentifierSlowCase(parser, context, 0, isValidAsKeyword);
1480
1480
  }
@@ -8810,7 +8810,7 @@
8810
8810
  __proto__: null
8811
8811
  });
8812
8812
 
8813
- var version$1 = "4.3.1";
8813
+ var version$1 = "4.3.2";
8814
8814
 
8815
8815
  const version = version$1;
8816
8816
  function parseScript(source, options) {