@parcel/utils 2.0.0-nightly.1376 → 2.0.0-nightly.1380

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/lib/index.js CHANGED
@@ -35153,7 +35153,7 @@ var $fc60114c9ddc0bb9$var$util = {
35153
35153
  return typeof c === "string" && (c >= "a" && c <= "z" || c >= "A" && c <= "Z" || c === "$" || c === "_" || $fc60114c9ddc0bb9$var$unicode.ID_Start.test(c));
35154
35154
  },
35155
35155
  isIdContinueChar (c) {
35156
- return typeof c === "string" && (c >= "a" && c <= "z" || c >= "A" && c <= "Z" || c >= "0" && c <= "9" || c === "$" || c === "_" || c === "" || c === "" || $fc60114c9ddc0bb9$var$unicode.ID_Continue.test(c));
35156
+ return typeof c === "string" && (c >= "a" && c <= "z" || c >= "A" && c <= "Z" || c >= "0" && c <= "9" || c === "$" || c === "_" || c === "\u200C" || c === "\u200D" || $fc60114c9ddc0bb9$var$unicode.ID_Continue.test(c));
35157
35157
  },
35158
35158
  isDigit (c) {
35159
35159
  return typeof c === "string" && /[0-9]/.test(c);
@@ -35419,8 +35419,8 @@ const $fc60114c9ddc0bb9$var$lexStates = {
35419
35419
  switch($fc60114c9ddc0bb9$var$c){
35420
35420
  case "$":
35421
35421
  case "_":
35422
- case "":
35423
- case "":
35422
+ case "\u200C":
35423
+ case "\u200D":
35424
35424
  $fc60114c9ddc0bb9$var$buffer += $fc60114c9ddc0bb9$var$read();
35425
35425
  return;
35426
35426
  case "\\":
@@ -35441,8 +35441,8 @@ const $fc60114c9ddc0bb9$var$lexStates = {
35441
35441
  switch(u){
35442
35442
  case "$":
35443
35443
  case "_":
35444
- case "":
35445
- case "":
35444
+ case "\u200C":
35445
+ case "\u200D":
35446
35446
  break;
35447
35447
  default:
35448
35448
  if (!$fc60114c9ddc0bb9$var$util.isIdContinueChar(u)) throw $fc60114c9ddc0bb9$var$invalidIdentifier();