Module:Format equipment stat: Difference between revisions

From Illerai
Jump to navigation Jump to search
illerai>Jayden
m 1 revision imported: Merging
 
m 1 revision imported
 
(No difference)

Latest revision as of 22:24, 2 November 2024

Module documentation
This documentation is transcluded from Module:Format equipment stat/doc. [edit] [history] [purge]

This template should be used when there is no documentation for a Module or Template.


local p = {}

function p.main(frame)
	return p.format(frame:getParent().args[1])
end

function p.format(_arg, default)
	local arg = tonumber(_arg)
	if not arg then return default or _arg end
	if arg < 0 then return tostring(arg) end
	return '+'..arg
end

return p