I have a beautified Json object and i would like to unbeautify it so i can use it in hard coding.
There are plenty of tools to beautify a json but none that would reverse. My problem is that i am not able to reverse the json object after beautifying it--- also known prettify.
I have already tried looking up if there would be any tool or site that will do this but was not successful.
Here is a sample of the json object i currently have:
"itemsList": [{
"name": "Name",
"type": "1"
}]
You can use JSONLint's reformat
parameter: https://jsonlint.com/?reformat=compress.
This can even be chained with the json
parameter to pass through your JSON directly:
https://jsonlint.com/?reformat=compress&json={"itemsList": [{ "name": "Name", "type": "1" }]}
You can do the following.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With