diff options
Diffstat (limited to 'src/lua.js')
-rw-r--r-- | src/lua.js | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -135,6 +135,8 @@ class lua_Debug { } const to_luastring = function(str, maxBytesToWrite) { + assert(typeof str === "string", "to_luastring expect a js string"); + maxBytesToWrite = maxBytesToWrite !== undefined ? maxBytesToWrite : Number.MAX_SAFE_INTEGER; let outU8Array = []; |