1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-30 22:28:12 +00:00

LibJS: Add Math.sign()

This commit is contained in:
Linus Groh 2020-05-18 14:35:41 +01:00 committed by Andreas Kling
parent bdfd1f1545
commit b27834cf16
3 changed files with 60 additions and 0 deletions

View file

@ -51,6 +51,7 @@ private:
static Value cos(Interpreter&);
static Value tan(Interpreter&);
static Value pow(Interpreter&);
static Value sign(Interpreter&);
};
}