diff options
author | daurnimator <quae@daurnimator.com> | 2018-01-07 02:05:22 +1100 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2018-01-07 02:05:22 +1100 |
commit | a80d704ceb4e7d85dc54a9c3706d6ffa7bf2412f (patch) | |
tree | c180a496428237fbbe60d4ff0079c1adeec376c9 /src/lua.js | |
parent | 90649345e011cdb998efe216f5e94a38d81eb4d2 (diff) | |
download | fengari-a80d704ceb4e7d85dc54a9c3706d6ffa7bf2412f.tar.gz fengari-a80d704ceb4e7d85dc54a9c3706d6ffa7bf2412f.tar.bz2 fengari-a80d704ceb4e7d85dc54a9c3706d6ffa7bf2412f.zip |
src/lauxlib.js: Export luastring_eq
Diffstat (limited to 'src/lua.js')
-rw-r--r-- | src/lua.js | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -78,6 +78,7 @@ module.exports.LUA_VERSUFFIX = defs.LUA_VERSUFFIX; module.exports.LUA_YIELD = defs.thread_status.LUA_YIELD; module.exports.lua_Debug = defs.lua_Debug; module.exports.lua_upvalueindex = defs.lua_upvalueindex; +module.exports.luastring_eq = defs.luastring_eq; module.exports.luastring_of = defs.luastring_of; module.exports.to_jsstring = defs.to_jsstring; module.exports.to_luastring = defs.to_luastring; |