1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:57:43 +00:00

LibJS: Add Math.max()

This commit is contained in:
Andreas Kling 2020-04-05 00:57:00 +02:00
parent ca90f88d4e
commit d84de532f1
2 changed files with 24 additions and 0 deletions

View file

@ -43,6 +43,7 @@ private:
static Value sqrt(Interpreter&);
static Value floor(Interpreter&);
static Value round(Interpreter&);
static Value max(Interpreter&);
};
}