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

LibJS: Implement Intl.Locale.prototype.hourCycles property

This commit is contained in:
Timothy Flynn 2022-07-05 13:41:08 -04:00 committed by Linus Groh
parent 4d32f38a76
commit ee2be5895f
6 changed files with 55 additions and 1 deletions

View file

@ -76,5 +76,6 @@ private:
Array* calendars_of_locale(GlobalObject& global_object, Locale const& locale);
Array* collations_of_locale(GlobalObject& global_object, Locale const& locale);
Array* hour_cycles_of_locale(GlobalObject& global_object, Locale const& locale);
}