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
When the user passes in a charset currently, it's only used for dot. I'm expanding this to be use intersection between the charset passed in, and categories like \w\s\d as well, but don't intend to for literals.
Should it apply to character classes? I'm not sure.
For some, like [^\w] it's pretty clear it should (once Unicode support lands), but others like [a-z_] are already fairly limited.
When the user passes in a
charsetcurrently, it's only used for dot. I'm expanding this to be use intersection between thecharsetpassed in, and categories like\w\s\das well, but don't intend to for literals.Should it apply to character classes? I'm not sure.
For some, like
[^\w]it's pretty clear it should (once Unicode support lands), but others like[a-z_]are already fairly limited.