From b4dc431b6f7d655142295e33b9228be243ab2969 Mon Sep 17 00:00:00 2001 From: ubq323 Date: Mon, 30 Jan 2023 20:17:41 +0000 Subject: switch to using json for packet formatting --- common/words.lua | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 common/words.lua (limited to 'common/words.lua') diff --git a/common/words.lua b/common/words.lua deleted file mode 100644 index 4d6904e..0000000 --- a/common/words.lua +++ /dev/null @@ -1,17 +0,0 @@ -local function join(...) - return table.concat({...}," ") -end - -local function split(s) - local o = {} - for w in string.gmatch(s,"(%S+)") do - table.insert(o,w) - end - return o -end - -return { - join=join, - split=split, -} - -- cgit v1.2.3