Suppose I have a json object like this
{"name": "abc","version": "1234"}{"name": "xyz","version": "6789"}I want it to transform it to
{"abc": "1234","xyz" : "6789"}I have tried map and reduce. But cant wrap my head around
Suppose I have a json object like this
{"name": "abc","version": "1234"}{"name": "xyz","version": "6789"}I want it to transform it to
{"abc": "1234","xyz" : "6789"}I have tried map and reduce. But cant wrap my head around