Skip to content

HELIXTable

Examples#

local table = {
    "my_key" = 123,
    [2] = "my_value"
}

local dump_text = HELIXTable.Dump(table)

Console.Log(dump_text)

-- Outputs Text
--[[
{
   "my_key": 123,
    2 = "my_value"
}
--]]

Static Functions#