Move fmod/fmodf to builtins and bind them to the '%' operator

This commit is contained in:
dcodeIO
2018-03-24 18:39:20 +01:00
parent 721d77012b
commit c80bf35747
21 changed files with 4378 additions and 4209 deletions

3
std/portable/math.js Normal file
View File

@ -0,0 +1,3 @@
module.exports = globalScope => {
globalScope["JSMath"] = Math;
};