LibJS: Add Math.max()

This commit is contained in:
Andreas Kling 2020-04-05 00:57:00 +02:00
commit d84de532f1
Notes: sideshowbarker 2024-07-19 07:55:08 +09:00
2 changed files with 24 additions and 0 deletions

View file

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