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
Currently, Oniguruma-To-ES treats \w, \d, and \s as ASCII-only, based on earlier versions of Oniguruma/Onigmo and testers like Rubular.com and RegexBuddy that are apparently running in non-Unicode mode. I've verified that Oniguruma 6.9.8 via vscode-oniguruma 2.0.1 treats these character sets as Unicode-based by default.
Oniguruma's Unicode-based interpretation of \s follows binary property \p{White_Space}, unlike JS's Unicode-based interpretation that includes \uFEFF and excludes \x85.
The text was updated successfully, but these errors were encountered:
Currently, Oniguruma-To-ES treats
\w
,\d
, and\s
as ASCII-only, based on earlier versions of Oniguruma/Onigmo and testers like Rubular.com and RegexBuddy that are apparently running in non-Unicode mode. I've verified that Oniguruma 6.9.8 via vscode-oniguruma 2.0.1 treats these character sets as Unicode-based by default.Oniguruma's Unicode-based interpretation of
\s
follows binary property\p{White_Space}
, unlike JS's Unicode-based interpretation that includes\uFEFF
and excludes\x85
.The text was updated successfully, but these errors were encountered: