Skip to content

Instantly share code, notes, and snippets.

function tab2str(tab)
local s = "{"
for i,v in pairs(tab) do
if type(v) == "table" then
s = s.."{"
for it,vt in pairs(v) do
if type(vt) == "table" then
s = s.."{"
s = s..stringall.table(vt)
if it ~= #v then