Модуль:Utils
Материал из Eco - Русская Wiki
Для документации этого модуля может быть создана страница Модуль:Utils/doc
local p = {}
-- Trims and parses the args into a table, then returns the table
function p.normaliseArgs(frame)
local origArgs = frame:getParent().args
local args = {}
for k, v in pairs(origArgs) do
v = mw.text.trim(tostring(v))
if v ~= '' then
args[k] = v
end
end
return args
end
return p