I struggle to seamlessly merge all the necessary transformations. I would greatly appreciate some assistance from those who are more comfortable with data manipulation, thank you.
Here is a visual representation of my objective:
[
[
{
name : 'a',
value : 'b'
},
{
name : 'c',
value : 'd'
},
...
],
[
{
name : 'e',
value : 'f'
},
{
name : 'g',
value : 'h'
},
...
],
...
]
// to
[
{
a : 'b',
c : 'd'
},
{
e : 'f',
g : 'h'
},
...
]