LibJS: Add Math.sign()

This commit is contained in:
Linus Groh 2020-05-18 14:35:41 +01:00 committed by Andreas Kling
commit b27834cf16
Notes: sideshowbarker 2024-07-19 06:29:33 +09:00
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&);
};
}