summaryrefslogtreecommitdiff
path: root/common/words.lua
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2023-01-30 20:17:41 +0000
committerubq323 <ubq323@ubq323.website>2023-01-30 20:17:41 +0000
commitb4dc431b6f7d655142295e33b9228be243ab2969 (patch)
tree0d08286b18710de63f3037324bcaeaf2c44f7b04 /common/words.lua
parentebe12a65c07bccfbc704667c88d8125be33067cf (diff)
switch to using json for packet formatting
Diffstat (limited to 'common/words.lua')
-rw-r--r--common/words.lua17
1 files changed, 0 insertions, 17 deletions
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,
-}
-