local module =
function module:stringify(Table) local result = "" local array = false
for _, value in ipairs(Table) do array = true if type(value)
nil then value = "null" elseif type(value)
result = result .. value .. ", " end
if not array then for key, value in pairs(Table) do if type(value)
nil then value = "null" elseif type(value)
if result:sub(-2)
if array then result = "[" .. result .. " ]" else result = "" end mw.log(result) return resultend
return module