summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Runtime/MathObject.h
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2020-05-18 15:21:37 +0100
committerAndreas Kling <kling@serenityos.org>2020-05-18 17:57:28 +0200
commit452dbbc463625eee1800d542b6613b4ef875bb80 (patch)
tree6232e424821d56e2d35ac46f17ab276a733fa8ea /Libraries/LibJS/Runtime/MathObject.h
parente375766f9865144994caac17cf7d19371a3c7fb1 (diff)
downloadserenity-452dbbc463625eee1800d542b6613b4ef875bb80.zip
LibJS: Add Math.expm1()
Diffstat (limited to 'Libraries/LibJS/Runtime/MathObject.h')
-rw-r--r--Libraries/LibJS/Runtime/MathObject.h1
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&);
};