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

LibJS: Add Math.sqrt()

This commit is contained in:
Andreas Kling 2020-04-04 22:44:48 +02:00
parent d155491122
commit d4dfe7e525
3 changed files with 23 additions and 3 deletions

View file

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