1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:37:36 +00:00

LibJS: Implement Temporal.Instant.fromEpochSeconds()

This commit is contained in:
Linus Groh 2021-07-09 11:51:23 +01:00
parent 9c9813c312
commit 2401e45720
4 changed files with 81 additions and 0 deletions

View file

@ -23,6 +23,8 @@ public:
private:
virtual bool has_constructor() const override { return true; }
JS_DECLARE_NATIVE_FUNCTION(from_epoch_seconds);
};
}