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

LibJS: Add Math.exp()

This commit is contained in:
Linus Groh 2020-05-18 15:11:15 +01:00 committed by Andreas Kling
parent b27834cf16
commit e375766f98
5 changed files with 48 additions and 12 deletions

View file

@ -51,6 +51,7 @@ private:
static Value cos(Interpreter&);
static Value tan(Interpreter&);
static Value pow(Interpreter&);
static Value exp(Interpreter&);
static Value sign(Interpreter&);
};