1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:48:10 +00:00

LibJS: Add Math.min()

This commit is contained in:
Andreas Kling 2020-04-05 18:55:46 +02:00
parent 9e7dcaa106
commit 003741db1c
3 changed files with 30 additions and 0 deletions

View file

@ -45,6 +45,7 @@ private:
static Value ceil(Interpreter&);
static Value round(Interpreter&);
static Value max(Interpreter&);
static Value min(Interpreter&);
static Value trunc(Interpreter&);
};