Jump to content

Module:Format

From Consumer_Action_Taskforce

Documentation for this module may be created at Module:Format/doc

local p = {}

function p.uppercase(frame)
    local text = frame.args[1] or ''
    return text:upper()
end

function p.lowercase(frame)
    local text = frame.args[1] or ''
    return text:lower()
end

return p