Documentation for this module may be created at Module:Damage/doc

local p = {}
p.loop = function(frame)
    local t = {}
    for name, value in frame:argumentPairs() do
        t[name] = value
    end
    t = table.concat(t, ", ")
    return t
end
return p