LibJS: Add Math.floor()

This commit is contained in:
Andreas Kling
2020-04-05 00:26:56 +02:00
parent 3c99c27db4
commit afff228308
2 changed files with 13 additions and 0 deletions

View File

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