Module:String2: Difference between revisions

Content deleted Content added
findpagetext
add simple trim function
Line 1:
local p = {}
 
p.trim = function(frame)
local s = mw.text.trim(frame.args[1])
return s
end
 
p.upper = function(frame)