Skip to content
Documentation is work in progress. Information may be out of date and inaccurate.

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#