diff options
-rw-r--r-- | src/defs.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/defs.js b/src/defs.js index 3d355de..5091fb2 100644 --- a/src/defs.js +++ b/src/defs.js @@ -3,7 +3,6 @@ const assert = require('assert'); const luaconf = require('./luaconf.js'); -const llimit = require('./llimit.js'); // To avoid charCodeAt everywhere const char = []; @@ -174,8 +173,6 @@ const to_jsstring = function(value, from, to) { str += String.fromCharCode(0xD800 | (ch >> 10), 0xDC00 | (ch & 0x3FF)); } } - - return str; }; const to_luastring_cache = {}; |