I'm trying to use typescript to build a json object from an array of objects like this one:[
[
{ attribute: 'a', modifier: 121 },
{ attribute: 'b', modifier: 67 },
{ attribute: 'c', modifier: 121 },
{ attribute: 'd', modifier: 67 }
]
I would like to get something like:
{
a: 121,
b: 67,
c: 121,
d: 67
}
But I just can't get my head around the high order functions to make it work.