diff options
Diffstat (limited to 'src/lstring.js')
-rw-r--r-- | src/lstring.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lstring.js b/src/lstring.js index c8da56a..4350165 100644 --- a/src/lstring.js +++ b/src/lstring.js @@ -50,7 +50,7 @@ const luaS_bless = function(L, str) { /* makes a copy */ const luaS_new = function(L, str) { - return luaS_bless(L, Uint8Array.from(str)); + return luaS_bless(L, defs.luastring_from(str)); }; /* takes a js string */ |