I'm using a lot console.log for debugging purpose. When I log long objects, it is difficult to read the complete object. Is there a console.pretty or something to print the data in a pretty way?
Actual (logs inline):
{data:'data',data1:'data1'}
Expect:
{
data:'data',
data1:'data1'
}