Hi I have the following object:
{
"position": {
"json": {
"left": "57px",
"top": "79px"
}
},
}
It contains several other keys like size
etc...
How can I get rid of the "json"
without deleting the inner content so that my result looks like
{
"position": {
"left": "57px",
"top": "79px"
},
}
I need a way to remove every key that has a string "json"
as content without removing the containing objects.