Open kddnewton opened 5 months ago
With this regexp:
/\ca/
the escape sequence results in a regular expression with source:
/\x01/
but parser gives: /\u0001/. I don't know if this is actually a bug or not, but it's surprising.
/\u0001/
With this regexp:
the escape sequence results in a regular expression with source:
but parser gives:
/\u0001/
. I don't know if this is actually a bug or not, but it's surprising.