Module:String

From WPRDC Wiki
Revision as of 10:48, 22 August 2012 by >IAlex (fix)
Jump to navigation Jump to search

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

local p = {}

function p.length( frame )
    local arg1 = frame.args[1]
    return string.len( arg1 )
end    

return p