I\'m about to use forOwn to iterate through an object\'s properties and create an array manually and can\'t helping thinking there\'s a oneliner already availab
forOwn
You don't even need lodash for that:
var arr = Object.keys(obj).map(function(key){ return { key: key, value: obj[key] }; });