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

LibJS: Add Math.expm1()

This commit is contained in:
Linus Groh 2020-05-18 15:21:37 +01:00 committed by Andreas Kling
parent e375766f98
commit 452dbbc463
3 changed files with 31 additions and 0 deletions

View file

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