Jump to content

Module:Format

From Consumer_Action_Taskforce
Revision as of 05:34, 30 January 2025 by Louis (talk | contribs) (Created page with "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")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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