Files
fes/lib/util.lua
2025-12-26 10:06:23 -05:00

15 lines
244 B
Lua

local std = require("lib.std")
local symbol = require("lib.symbol")
local M = {}
function M.cc(tbl)
return table.concat(tbl)
end
function M.copyright(link, holder)
return symbol.copyright .. " " .. std.external(link, holder)
end
return M