From 8bedd949c894d61284b3ddd5b3bf989b651b95f8 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Thu, 18 Jan 2018 07:10:48 +1100 Subject: src/lstring.js: Use destructuring assignment for defs.js --- src/lstring.js | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/lstring.js b/src/lstring.js index 8a7e71b..4769866 100644 --- a/src/lstring.js +++ b/src/lstring.js @@ -1,6 +1,11 @@ "use strict"; -const defs = require('./defs.js'); +const { + is_luastring, + luastring_eq, + luastring_from, + to_luastring +} = require('./defs.js'); const { lua_assert } = require("./llimits.js"); class TString { @@ -23,13 +28,13 @@ class TString { const luaS_eqlngstr = function(a, b) { lua_assert(a instanceof TString); lua_assert(b instanceof TString); - return a == b || defs.luastring_eq(a.realstring, b.realstring); + return a == b || luastring_eq(a.realstring, b.realstring); }; /* converts strings (arrays) to a consistent map key make sure this doesn't conflict with any of the anti-collision strategies in ltable */ const luaS_hash = function(str) { - lua_assert(defs.is_luastring(str)); + lua_assert(is_luastring(str)); let len = str.length; let s = "|"; for (let i=0; i