diff options
Diffstat (limited to 'awall/util.lua')
-rw-r--r-- | awall/util.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/awall/util.lua b/awall/util.lua index a34165c..f6720bd 100644 --- a/awall/util.lua +++ b/awall/util.lua @@ -102,6 +102,19 @@ function M.compare(a, b) return true end +function M.join(a, sep, b) + local comps = {} + local function add(s) + if not s then return end + s = tostring(s) + if s > '' then table.insert(comps, s) end + end + add(a) + add(b) + if comps[1] then return table.concat(comps, sep) end +end + + function M.printtabulars(tables) local colwidth = {} for i, tbl in ipairs(tables) do |