I am looking to change the structure of some data. Below is a sample of the data I am receiving
{
ID1: {
firstName: 'John',
lastName: 'Doe'
},
ID2: {
firstName: 'Jane',
lastName: 'Doe'
}
}
What I need to do is convert this into an array with the following format:
[
{ ID: ID1, firstName: 'John', lastName: 'Doe' },
{ ID: ID2, firstName: 'Jane', lastName: 'Doe' }
]
I prefer to use lodash if possible