Module:Item: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
No edit summary |
||
Line 11: | Line 11: | ||
function p.getItemNameAndIMG( frame ) | function p.getItemNameAndIMG( frame ) | ||
local arg = string.lower(frame.args[1]) | local arg = string.lower(frame.args[1]) | ||
return capitalizeFirstLetter(arg) | |||
end | end |
Revision as of 14:34, 21 October 2023
Documentation for this module may be created at Module:Item/doc
local p = {}
local fileModule = require("Module:FileExists")
local function capitalizeFirstLetter(input)
local firstLetter = input:sub(1, 1)
local restOfString = input:sub(2)
return firstLetter:upper() .. restOfString:lower()
end
function p.getItemNameAndIMG( frame )
local arg = string.lower(frame.args[1])
return capitalizeFirstLetter(arg)
end