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&);
};