LibJS: Add Math.round()

This commit is contained in:
Andreas Kling 2020-04-05 00:29:01 +02:00
commit 16bd99aa52
Notes: sideshowbarker 2024-07-19 07:55:13 +09:00
2 changed files with 14 additions and 0 deletions

View file

@ -42,6 +42,7 @@ private:
static Value random(Interpreter&);
static Value sqrt(Interpreter&);
static Value floor(Interpreter&);
static Value round(Interpreter&);
};
}