In my console, I'm getting:
{
'a': [Circular],
'b': [Circular],
'c': [Circular]
}
How can I see the contents of [Circular]
? I've tried console.log()
, util.inspect()
and console.dir()
and I'm still getting [Circular]
instead of the actual content.
Edit: I'm trying to see the actual content, how many layers deep it goes, etc., for debugging purposes. Linked question does not address any of that.