Static function
TOML.Parse
Returns a value representing the decoded TOML string
Syntax
TOML.Parse(value)
Parameters
| Name | Type | Default | Description |
|---|---|---|---|
value
|
string | — | the TOML that will become a table |
Returns
- any the TOML in table
Examples
local decoded_value = TOML.Parse("my_table = [ 1, 2, 3 ]")