You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We already do something similar with strings, reducing '\x20' to ' ' (escodegen handles this for us automatically). It gets trickier with regular expressions, though, because we will need to avoid control characters such as [](){}-\. When expressed as \u????, these control characters can still be reduced to \x??.
The text was updated successfully, but these errors were encountered:
We already do something similar with strings, reducing
'\x20'
to' '
(escodegen handles this for us automatically). It gets trickier with regular expressions, though, because we will need to avoid control characters such as[](){}-\
. When expressed as\u????
, these control characters can still be reduced to\x??
.The text was updated successfully, but these errors were encountered: