1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:58:11 +00:00

LibJS: Add Math.round()

This commit is contained in:
Andreas Kling 2020-04-05 00:29:01 +02:00
parent afff228308
commit 16bd99aa52
2 changed files with 14 additions and 0 deletions

View file

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