diff options
author | daurnimator <quae@daurnimator.com> | 2018-01-06 19:32:31 +1100 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2018-01-06 19:32:43 +1100 |
commit | a0fa83dc9c170542630dbc83d1732d3e7a6313e9 (patch) | |
tree | f49965560f11a43e0fcb8dbc6bae1ce9ee22cb93 /src/lua.js | |
parent | 110636150e4b3470e21622b022bec2844d8e8b2f (diff) | |
download | fengari-a0fa83dc9c170542630dbc83d1732d3e7a6313e9.tar.gz fengari-a0fa83dc9c170542630dbc83d1732d3e7a6313e9.tar.bz2 fengari-a0fa83dc9c170542630dbc83d1732d3e7a6313e9.zip |
Expose lua.luastring_of to construct a lua 'string' from raw byte values
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_of = defs.luastring_of; module.exports.to_jsstring = defs.to_jsstring; module.exports.to_luastring = defs.to_luastring; module.exports.to_uristring = defs.to_uristring; |