Module:RemoveSpace

From Pirate Software Wiki
Revision as of 18:52, 16 September 2024 by Djinnet (talk | contribs) (This should work to remove spaces in names)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

local p = {}

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

return p