I have a JSON file formatted like below:
{
"dislike": 0,
"like": 15,
"laugh": 4
}
How can I sort the JSON in descending order, so that it looks like this:
{
"like": 15,
"laugh": 4,
"dislike": 0
}
Any help would be much appreciated. Thank you!