I am working with an array that is formatted like this
[
[{
"ID": "f75d414d-55fc-43c8-a24d-34eca67913b7",
"Revision": "a8c73a24-d46a-47c8-825e-511b26485e23",
"type": "Hello",
"Stage": null,
"label": null,
},
{
"ID": "f75d414d-55fc-43c8-a24d-34eca67913b7",
"Revision": "a8c73a24-d46a-47c8-825e-511b26485e23",
"type": "world",
"Stage": null,
"label": null,
}]
]
That I need converted to this
[{
"ID": "f75d414d-55fc-43c8-a24d-34eca67913b7",
"Revision": "a8c73a24-d46a-47c8-825e-511b26485e23",
"type": "Hello",
"Stage": null,
"label": null,
},
{
"ID": "f75d414d-55fc-43c8-a24d-34eca67913b7",
"Revision": "a8c73a24-d46a-47c8-825e-511b26485e23",
"type": "world",
"Stage": null,
"label": null,
}]
by saving a variable (the original array) to itself some way. A slick way would be nice.