Static function
TOML.Dump
Returns a string representing value encoded in TOML
Syntax
TOML.Dump(value)
Parameters
| Name | Type | Default | Description |
|---|---|---|---|
value
|
table | — | the table that will become TOML |
Returns
- string the table in TOML
Examples
local encoded_value = TOML.Dump({ 1, 2, 3, { x = 10, y = Vector(1, 2, 3) }, "he" })