Closed
Description
/(s)\1/ui
is currently transformed to /([s\u017F])\x01/i
.
- Back references should probably not be transformed to hexadecimal escapes
- Canonicalizing the back reference's content is tricky, I'm not sure how this feature can be supported without canonicalizing the input string first, e.g. in
/(s)\1/ui.test("s\u017f") == true
.