From e7cf17565e26dc5c4a100688526b0dfed1220e44 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Thu, 11 May 2017 14:02:23 +1000 Subject: Move luaL_openlibs from lauxlib to lualib --- src/lauxlib.js | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/lauxlib.js') diff --git a/src/lauxlib.js b/src/lauxlib.js index 4f55e13..38402c2 100644 --- a/src/lauxlib.js +++ b/src/lauxlib.js @@ -2,7 +2,6 @@ "use strict"; const lua = require('./lua.js'); -const linit = require('./linit.js'); /* key, in the registry, for table of loaded modules */ const LUA_LOADED_TABLE = "_LOADED"; @@ -798,7 +797,6 @@ module.exports.luaL_loadstring = luaL_loadstring; module.exports.luaL_newlib = luaL_newlib; module.exports.luaL_newmetatable = luaL_newmetatable; module.exports.luaL_newstate = luaL_newstate; -module.exports.luaL_openlibs = linit.luaL_openlibs; module.exports.luaL_opt = luaL_opt; module.exports.luaL_optinteger = luaL_optinteger; module.exports.luaL_optlstring = luaL_optlstring; -- cgit v1.2.3-54-g00ecf