From 4161f6756dadef6cd5a5c2e1e75804122e892949 Mon Sep 17 00:00:00 2001 From: Benoit Giannangeli Date: Thu, 16 Mar 2017 09:45:50 +0100 Subject: string.format --- src/lauxlib.js | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/lauxlib.js') diff --git a/src/lauxlib.js b/src/lauxlib.js index e3afa60..f77fe5e 100644 --- a/src/lauxlib.js +++ b/src/lauxlib.js @@ -226,6 +226,10 @@ const luaL_pushresult = function(B) { lapi.lua_pushstring(L, B.b); }; +const luaL_addchar = function(B, c) { + B.b += c; +}; + const luaL_addvalue = function(B) { let L = B.L; let s = lapi.lua_tostring(L, -1); @@ -395,6 +399,7 @@ const luaL_newlib = function(L, l) { module.exports.LUA_LOADED_TABLE = LUA_LOADED_TABLE; module.exports.luaL_Buffer = luaL_Buffer; +module.exports.luaL_addchar = luaL_addchar; module.exports.luaL_addlstring = luaL_addlstring; module.exports.luaL_addstring = luaL_addstring; module.exports.luaL_addvalue = luaL_addvalue; -- cgit v1.2.3-54-g00ecf