Module:String

From Wavu Wiki, the 🌊 wavy Tekken wiki
Revision as of 12:38, 21 February 2022 by RogerDodger (talk | contribs)

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

local p = {};

p.lc = function(frame)
	local s = frame.args[1]
	return s:lower()
end

p.rep = function(frame)
	local s = frame.args[1]
	local n = frame.args[2]
	return s:rep(n)
end

return p