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

LibJS: Remove ISODaysInYear

This is an editorial change in the Temporal spec.

See: f62e737
This commit is contained in:
Linus Groh 2022-05-06 23:59:27 +02:00
parent ade7946217
commit 6d0d7c8fd0
3 changed files with 17 additions and 33 deletions

View file

@ -63,7 +63,6 @@ String format_calendar_annotation(StringView id, StringView show_calendar);
ThrowCompletionOr<bool> calendar_equals(GlobalObject&, Object& one, Object& two);
ThrowCompletionOr<Object*> consolidate_calendars(GlobalObject&, Object& one, Object& two);
bool is_iso_leap_year(i32 year);
u16 iso_days_in_year(i32 year);
u8 iso_days_in_month(i32 year, u8 month);
u8 to_iso_day_of_week(i32 year, u8 month, u8 day);
u16 to_iso_day_of_year(i32 year, u8 month, u8 day);