summaryrefslogtreecommitdiff
path: root/src/lmathlib.js
diff options
context:
space:
mode:
authorBenoit Giannangeli <giann008@gmail.com>2017-04-26 09:02:43 +0200
committerBenoit Giannangeli <giann008@gmail.com>2017-04-26 11:41:21 +0200
commitfc482dac2bd84df0bb82216b9036b25a2914474c (patch)
tree8d01005b480161c505626b96455457349a347a47 /src/lmathlib.js
parente2d9007d484641a3c3dffc325999fe509de1422a (diff)
downloadfengari-fc482dac2bd84df0bb82216b9036b25a2914474c.tar.gz
fengari-fc482dac2bd84df0bb82216b9036b25a2914474c.tar.bz2
fengari-fc482dac2bd84df0bb82216b9036b25a2914474c.zip
math.huge is Number.Infinity
Diffstat (limited to 'src/lmathlib.js')
-rw-r--r--src/lmathlib.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lmathlib.js b/src/lmathlib.js
index 49a1abe..7d3a082 100644
--- a/src/lmathlib.js
+++ b/src/lmathlib.js
@@ -259,7 +259,7 @@ const luaopen_math = function(L) {
lauxlib.luaL_newlib(L, mathlib);
lua.lua_pushnumber(L, Math.PI);
lua.lua_setfield(L, -2, lua.to_luastring("pi", true));
- lua.lua_pushnumber(L, Number.MAX_VALUE);
+ lua.lua_pushnumber(L, Infinity);
lua.lua_setfield(L, -2, lua.to_luastring("huge", true));
lua.lua_pushinteger(L, llimit.MAX_INT);
lua.lua_setfield(L, -2, lua.to_luastring("maxinteger", true));