Files
fes/core/util.lua
2025-11-28 21:12:57 -05:00

15 lines
246 B
Lua

local std = require("core.std")
local symbol = require("core.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