Content deleted Content added
No edit summary |
No edit summary |
||
Line 13:
p.ucfirst = function (frame )
local s =
if not s or '' == s or s:match ('^%s+$') then -- when <s> is nil, empty, or only whitespace
return s; -- abandon because nothing to do
end
s = mw.text.trim( frame.args[1] or "" )
local s1 = ""
|