Deprecated: Use of MediaWiki\Skin\Skin::appendSpecialPagesLinkIfAbsent was deprecated in MediaWiki 1.44. [Called from MediaWiki\Skin\Skin::buildSidebar in /var/www/html/includes/skins/Skin.php at line 1639] in /var/www/html/includes/debug/MWDebug.php on line 386
Jump to content

Module:Format

From Consumer Rights Wiki

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