Module:Format eq stat: Difference between revisions

From Roat Pkz
Jump to navigation Jump to search
Armadyl Godsword>Riblet15
(arg)
 
m (1 revision imported)
 
(No difference)

Latest revision as of 19:30, 23 March 2024

Documentation for this module may be created at Module:Format eq stat/doc

local p = {}

function p.signed(arg)
	local first_char = string.sub(arg, 1, 1)

	if first_char == '+' or first_char == '-' then
		return arg
	else
		return '+'..arg
	end
end

function p.main(frame)
	local args = frame:getParent().args

	local arg = args[1] or ''
	return p.signed(arg)
end

return p