Jump to content

Module:RemoveSpace

From Ferret Software Wiki
Revision as of 09:44, 10 March 2025 by Nelas (talk | contribs) (1 revision imported: PS to FS migration)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

local p = {}

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

return p