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.
@@ -1468,7 +1468,7 @@ const descKeywordTable = Object.create(null, {
1468
1468
  function scanIdentifier(parser, context, isValidAsKeyword) {
1469
1469
  while (isIdPart[advanceChar(parser)]) { }
1470
1470
  parser.tokenValue = parser.source.slice(parser.tokenPos, parser.index);
1471
- return parser.currentChar !== 92 && parser.currentChar < 0x7e
1471
+ return parser.currentChar !== 92 && parser.currentChar <= 0x7e
1472
1472
  ? descKeywordTable[parser.tokenValue] || 208897
1473
1473
  : scanIdentifierSlowCase(parser, context, 0, isValidAsKeyword);
1474
1474
  }
@@ -8804,7 +8804,7 @@ var estree = /*#__PURE__*/Object.freeze({
8804
8804
  __proto__: null
8805
8805
  });
8806
8806
 
8807
- var version$1 = "4.3.1";
8807
+ var version$1 = "4.3.2";
8808
8808
 
8809
8809
  const version = version$1;
8810
8810
  function parseScript(source, options) {