With the following array;
var arr = [
{"name": "blah"},
{"version": "v1.0.0"},
...
]
I would like to create the following object with lodash;
var obj = {
"name": "blah",
"version": "v1.0.0",
...
}
P.S. Duplicates don't matter as there won't be any here.