to toml for formats
Convert record into .toml text.
Signature
> to toml {flags}
Input/output types:
| input | output |
|---|---|
| record | string |
Examples
Outputs an TOML string representing the contents of this record
> {foo: 1 bar: 'qwe'} | to toml
bar = "qwe"
foo = 1