Jump to content

Module:RemoveSpace: Difference between revisions

From Ferret Software Wiki
m Does this work now?
 
m 1 revision imported: PS to FS migration
 
(No difference)

Latest revision as of 09:44, 10 March 2025

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