« Module:WeightToPercent » : différence entre les versions
Aller à la navigation
Aller à la recherche
debug 4: localsss |
debug 5: seems like it's not working if you don't use magic word parentOnly |
||
| Ligne 3 : | Ligne 3 : | ||
function p.main(frame) | function p.main(frame) | ||
local args = getArgs(frame) | local args = getArgs(frame, {trim = true, removeBlanks = true, parentOnly = true}) | ||
return p.convert(args) | return p.convert(args) | ||
end | end | ||
Version du 19 novembre 2025 à 14:28
La documentation pour ce module peut être créée à Module:WeightToPercent/doc
local getArgs = require('Module:Arguments').getArgs
local p = {}
function p.main(frame)
local args = getArgs(frame, {trim = true, removeBlanks = true, parentOnly = true})
return p.convert(args)
end
function p.convert(args)
local weight = args[1]
local totalweight = args[2]
if weight == nil then return "ERROR: weight input (1rst arg) is nil"
elseif totalweight == nil then return "ERROR: totalweight (2nd arg) input is nil"
elseif weight == 0 then return 0
else return 100 * totalweight / weight end
end
return p