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

LibJS: Add Math.floor()

This commit is contained in:
Andreas Kling 2020-04-05 00:26:56 +02:00
parent 3c99c27db4
commit afff228308
2 changed files with 13 additions and 0 deletions

View file

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