I want to transform following format JSON:
{
id1: value1,
id2: value2
id3: value3,
...
}
into
[
{ id: 'id1', value: 'value1' },
{ id: 'id2', value: 'value2' },
{ id: 'id3', value: 'value3' },
...
]
What would be fast and convenient? Is there any way we can use underscore.js for this. Thank you in advance.