public static stringify(document as Map<String, Object>) as String throws TOMLWriteException:
Serializes a root table as deterministic TOML text.
| Parameter | Description |
|---|---|
document | Root TOML table. |
Serialized TOML document.
document = {"title": "Klyn", "enabled": true}
text = TOML.stringify(document)
assert "title = \"Klyn\"" in text