diff options
author | Linus Groh <mail@linusgroh.de> | 2020-05-18 15:21:37 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-18 17:57:28 +0200 |
commit | 452dbbc463625eee1800d542b6613b4ef875bb80 (patch) | |
tree | 6232e424821d56e2d35ac46f17ab276a733fa8ea /Libraries/LibJS/Runtime/MathObject.h | |
parent | e375766f9865144994caac17cf7d19371a3c7fb1 (diff) | |
download | serenity-452dbbc463625eee1800d542b6613b4ef875bb80.zip |
LibJS: Add Math.expm1()
Diffstat (limited to 'Libraries/LibJS/Runtime/MathObject.h')
-rw-r--r-- | Libraries/LibJS/Runtime/MathObject.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Libraries/LibJS/Runtime/MathObject.h b/Libraries/LibJS/Runtime/MathObject.h index 31d9b7fd03..e9902e6d53 100644 --- a/Libraries/LibJS/Runtime/MathObject.h +++ b/Libraries/LibJS/Runtime/MathObject.h @@ -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&); }; |