LibJS: Add Math.min()

This commit is contained in:
Andreas Kling
2020-04-05 18:55:46 +02:00
parent 9e7dcaa106
commit 003741db1c
3 changed files with 30 additions and 0 deletions

View File

@@ -45,6 +45,7 @@ private:
static Value ceil(Interpreter&);
static Value round(Interpreter&);
static Value max(Interpreter&);
static Value min(Interpreter&);
static Value trunc(Interpreter&);
};