Repair an unquoted key and trailing comma
Input
{name: '51tools', enabled: true,}
Output
{
"name": "51tools",
"enabled": true
}
Repair trailing commas, single quotes, comments, unquoted keys, and other common JSON syntax problems.
Repair common non-standard JSON syntax in your browser and produce strict JSON output.
{name: '51tools', enabled: true,}
{
"name": "51tools",
"enabled": true
}
Input and repair run entirely in your browser.