diff options
-rw-r--r-- | src/defs.js | 5 | ||||
-rw-r--r-- | src/lua.js | 1 |
2 files changed, 0 insertions, 6 deletions
diff --git a/src/defs.js b/src/defs.js index e1366b0..e24f419 100644 --- a/src/defs.js +++ b/src/defs.js @@ -115,10 +115,6 @@ const LUA_RIDX_MAINTHREAD = 1; const LUA_RIDX_GLOBALS = 2; const LUA_RIDX_LAST = LUA_RIDX_GLOBALS; -const print_version = function() { - console.log(FENGARI_COPYRIGHT); -}; - class lua_Debug { constructor() { @@ -283,6 +279,5 @@ module.exports.LUA_VERSUFFIX = LUA_VERSUFFIX; module.exports.constant_types = constant_types; module.exports.lua_Debug = lua_Debug; module.exports.lua_upvalueindex = lua_upvalueindex; -module.exports.print_version = print_version; module.exports.thread_status = thread_status; module.exports.to_luastring = to_luastring; @@ -69,6 +69,5 @@ module.exports.LUA_VERSION_RELEASE = defs.LUA_VERSION_RELEASE; module.exports.LUA_VERSUFFIX = defs.LUA_VERSUFFIX; module.exports.lua_Debug = defs.lua_Debug; module.exports.lua_upvalueindex = defs.lua_upvalueindex; -module.exports.print_version = defs.print_version; module.exports.thread_status = defs.thread_status; module.exports.to_luastring = defs.to_luastring; |