Module:RemoveSpace: Difference between revisions

From Pirate Software Wiki
(This should work to remove spaces in names)
(No difference)

Revision as of 18:52, 16 September 2024


local p = {}

function p.removeSpaces(frame)
    local name = frame.args[1]
    return mw.ustring.gsub(name, " ", "")
end

return p