Moduł:Narzędzia

Z Nonsensopedii, polskiej encyklopedii humoru

local p = {}

function p.firstsmall(frame)
    return p.firstSmallL(frame.args[1])
end

function p.firstSmallL(text)
    if text == nil or text:len() == 0 then
        return ''
    end
        
    text = string.sub(text, 1, 1):lower() .. string.sub(text, 2, -1)
    
    return text   
end

function p.firstlarge(frame)
    return p.firstLargeL(frame.args[1])
end

function p.firstLargeL(text)
    if text == nil or text:len() == 0 then
        return ''
    end
        
    text = string.sub(text, 1, 1):upper() .. string.sub(text, 2, -1)
    
    return text   
end

return p