I got this array:
[
{ data: { '4321432': { foo: 'bar' } } },
{ data: { '4321432': { bar: 'foo' } } }
]
it's not always 4321432
could be several, for example
[
{ data: { '4321432': { foo: 'bar' } } },
{ data: { '4321432': { bar: 'foo' } } }
{ data: { '4321432': { yes: 'no' }, '5435': { example: true } } },
]
I want something like this in a end:
[
{
id: '4321432',
foo: 'bar',
bar: 'foo',
yes: 'no'
},
{
id: '5435',
example: true
}
]