Content deleted Content added
add time conversion |
No edit summary |
||
Line 55:
local sec = s:match('^%s*[%d][%d]*m%s*([%d][%d]*)s%s*$')
if( min and sec ) then
return tostring(tonumber(min)*60 + tonumber(sec)) .. '
' (' .. min .. ' m ' .. sec .. ' s)'
end
end
|