-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[browser][non-icu] HybridGlobalization
normalization.
#85510
Conversation
Tagging subscribers to this area: @dotnet/area-system-globalization Issue DetailsImplements a chunk of web-api based globalization. Is a part of HybridGlobalization feature and contributes to #79989. Old, icu-based private API: GlobalizationNative_IsNormalized, GlobalizationNative_NormalizeString New, non-icu private API: Interop.JsGlobalization.IsNormalized, Interop.JsGlobalization.NormalizeString Affected public API (see: tests in Normalization\NormalizationAll.cs, Normalization\StringNormalizationTests.cs):
WebApi is used only for unicode codes, that's why Normalize ASCII time is identical for both modes.
|
Implements a chunk of web-api based globalization. Is a part of HybridGlobalization feature and contributes to #79989.
Old, icu-based private API: GlobalizationNative_IsNormalized, GlobalizationNative_NormalizeString
New, non-icu private API: Interop.JsGlobalization.IsNormalized, Interop.JsGlobalization.NormalizeString
Affected public API (see: tests in Normalization\NormalizationAll.cs, Normalization\StringNormalizationTests.cs):
WebApi is used only for unicode codes, that's why Normalize ASCII time is identical for both modes.
No changes in behavior. Hybrid Globalization JS code got split to smaller files.