diff options
author | daurnimator <quae@daurnimator.com> | 2018-03-30 15:23:45 +1100 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2018-03-30 15:29:59 +1100 |
commit | 955c73898c992ef15396bafdf4383ce8a9bf1843 (patch) | |
tree | ef605da9f7f946bf35f7397d2dbadded219cb45f /src/lualib.js | |
parent | e1ac6d64eb82550f3b935ac7d0e81bd1a201cd8e (diff) | |
download | fengari-955c73898c992ef15396bafdf4383ce8a9bf1843.tar.gz fengari-955c73898c992ef15396bafdf4383ce8a9bf1843.tar.bz2 fengari-955c73898c992ef15396bafdf4383ce8a9bf1843.zip |
Add 'fengari' library containing version numbers etc
Diffstat (limited to 'src/lualib.js')
-rw-r--r-- | src/lualib.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lualib.js b/src/lualib.js index 78f441f..d5f8d9d 100644 --- a/src/lualib.js +++ b/src/lualib.js @@ -52,5 +52,9 @@ const LUA_LOADLIBNAME = "package"; module.exports.LUA_LOADLIBNAME = LUA_LOADLIBNAME; module.exports.luaopen_package = require("./loadlib.js").luaopen_package; +const LUA_FENGARILIBNAME = "fengari"; +module.exports.LUA_FENGARILIBNAME = LUA_FENGARILIBNAME; +module.exports.luaopen_fengari = require("./fengarilib.js").luaopen_fengari; + const linit = require('./linit.js'); module.exports.luaL_openlibs = linit.luaL_openlibs; |