From 452dbbc463625eee1800d542b6613b4ef875bb80 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Mon, 18 May 2020 15:21:37 +0100 Subject: LibJS: Add Math.expm1() --- Libraries/LibJS/Runtime/MathObject.h | 1 + 1 file changed, 1 insertion(+) (limited to 'Libraries/LibJS/Runtime/MathObject.h') 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&); }; -- cgit v1.2.3