From 16bd99aa527ff13dd92cf52c51c0d9fca9054f6c Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 5 Apr 2020 00:29:01 +0200 Subject: LibJS: Add Math.round() --- 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 6e11daf627..f72637ab2a 100644 --- a/Libraries/LibJS/Runtime/MathObject.h +++ b/Libraries/LibJS/Runtime/MathObject.h @@ -42,6 +42,7 @@ private: static Value random(Interpreter&); static Value sqrt(Interpreter&); static Value floor(Interpreter&); + static Value round(Interpreter&); }; } -- cgit v1.2.3