diff options
| -rw-r--r-- | src/lutf8lib.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/lutf8lib.js b/src/lutf8lib.js index 803898b..b69abb0 100644 --- a/src/lutf8lib.js +++ b/src/lutf8lib.js @@ -80,7 +80,7 @@ const utflen = function(L) {  const pushutfchar = function(L, arg) {      let code = lauxlib.luaL_checkinteger(L, arg);      lauxlib.luaL_argcheck(L, 0 <= code && code <= MAXUNICODE, arg, lua.to_luastring("value out of range", true)); -    lua.lua_pushstring(L, lua.to_luastring(String.fromCharCode(code))); +    lua.lua_pushstring(L, lua.to_luastring(String.fromCodePoint(code)));  };  /* | 
