I've read #1668 and #2668.
Can we have \ followed by whitespace within heregex as literal whitespace (\x20)?
Example:
re =
///
<link\ href=\"
([^"]*)
\">
///
should compile to:
re = /<link\ href=\"([^"]*)\">/
current impl:
re = /<link\href=\"([^"]*)\">/
I've read #1668 and #2668.
Can we have
\followed by whitespace within heregex as literal whitespace (\x20)?Example:
should compile to:
current impl: