1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 13:17:35 +00:00

LibJS: Implement Date.UTC()

This commit is contained in:
Nico Weber 2020-08-20 16:02:07 -04:00 committed by Andreas Kling
parent 221b412210
commit 1eac1b360b
3 changed files with 31 additions and 0 deletions

View file

@ -45,6 +45,7 @@ private:
virtual bool has_constructor() const override { return true; }
JS_DECLARE_NATIVE_FUNCTION(now);
JS_DECLARE_NATIVE_FUNCTION(utc);
};
}