📄 TOML to JSON

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