📄 JSON to TOML

Convert JSON to TOML format
Input
Output
Examples:
JSON Example
{
  "title": "JSON Example",
  "owner": {
    "name": "Tom Preston-Werner"
  }
}
TOML Example
title = "JSON Example"
[owner]
name = "Tom Preston-Werner"