Module:Fighter

From Wavu Wiki, the 🌊 wavy Tekken wiki
Revision as of 13:56, 24 January 2021 by RogerDodger (talk | contribs)

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

local p = {};

p.class = function(frame)
	local name = frame.args[1]
	return p._class(name)
end

p._class = function(name)
	local r = name:lower():gsub("%s+","-")
	return r
end

return p