diff options
author | daurnimator <quae@daurnimator.com> | 2017-05-30 15:14:00 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-05-30 15:14:00 +1000 |
commit | aef4fa0614a7984b5382b47302f3248032197d5a (patch) | |
tree | 56e35e30897fec54d87d00fe6b1e3a519101d4ce /src/defs.js | |
parent | 95e3a634e4bbf23dadc52bb026ede51b1ef3e7eb (diff) | |
download | fengari-aef4fa0614a7984b5382b47302f3248032197d5a.tar.gz fengari-aef4fa0614a7984b5382b47302f3248032197d5a.tar.bz2 fengari-aef4fa0614a7984b5382b47302f3248032197d5a.zip |
src/defs.js: remove unused import + unreachable code
Diffstat (limited to 'src/defs.js')
-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 = {}; |