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

LibJS: Implement Date's TimeClip AO

This commit is contained in:
Timothy Flynn 2021-12-04 18:55:59 -05:00 committed by Linus Groh
parent b76e44f66f
commit e56be34148
2 changed files with 16 additions and 0 deletions

View file

@ -102,5 +102,6 @@ double day(double);
Value make_time(GlobalObject& global_object, Value hour, Value min, Value sec, Value ms);
Value make_day(GlobalObject& global_object, Value year, Value month, Value date);
Value make_date(Value day, Value time);
Value time_clip(GlobalObject& global_object, Value time);
}