1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:37:34 +00:00

LibJS: Implement Intl.Locale.prototype.textInfo property

This commit is contained in:
Timothy Flynn 2022-07-05 19:50:24 -04:00 committed by Linus Groh
parent 4868b888be
commit 88a560dd84
6 changed files with 70 additions and 0 deletions

View file

@ -79,5 +79,6 @@ Array* collations_of_locale(GlobalObject& global_object, Locale const& locale);
Array* hour_cycles_of_locale(GlobalObject& global_object, Locale const& locale);
Array* numbering_systems_of_locale(GlobalObject& global_object, Locale const& locale);
Array* time_zones_of_locale(GlobalObject& global_object, StringView region);
StringView character_direction_of_locale(Locale const& locale);
}