1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:47:44 +00:00

LibJS: Implement per-locale display of calendars and date-time fields

This commit is contained in:
Timothy Flynn 2022-01-12 17:55:45 -05:00 committed by Linus Groh
parent adb762ee48
commit 4875ec26dd
4 changed files with 178 additions and 4 deletions

View file

@ -77,5 +77,6 @@ private:
};
ThrowCompletionOr<Value> canonical_code_for_display_names(GlobalObject& global_object, DisplayNames::Type type, StringView code);
bool is_valid_date_time_field_code(StringView field);
}