From 4d374d77766b6f621f2194a9546521295aa528af Mon Sep 17 00:00:00 2001 From: Benoit Giannangeli Date: Tue, 11 Apr 2017 10:06:09 +0200 Subject: debug.debug Use readline-sync to read from stdin interactively --- src/lualib.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lualib.js') diff --git a/src/lualib.js b/src/lualib.js index 83b1d0d..9751302 100644 --- a/src/lualib.js +++ b/src/lualib.js @@ -40,7 +40,7 @@ module.exports[LUA_MATHLIBNAME] = require("./lmathlib.js").luaopen_math; const LUA_DBLIBNAME = "debug"; module.exports.LUA_DBLIBNAME = LUA_DBLIBNAME; -module.exports[LUA_DBLIBNAME] = require("./ldebug.js").luaopen_debug; +module.exports[LUA_DBLIBNAME] = require("./ldblib.js").luaopen_debug; const LUA_LOADLIBNAME = "package"; module.exports.LUA_LOADLIBNAME = LUA_LOADLIBNAME; -- cgit v1.2.3-54-g00ecf