How can I transform a big object to array with lodash?
object
array
var obj = { 22: {name:\"John\", id:22, friends:[5,31,55], works:{books:[],
A modern native solution if anyone is interested:
const arr = Object.keys(obj).map(key => ({ key, value: obj[key] }));
or (not IE):
const arr = Object.entries(obj).map(([key, value]) => ({ key, value }));