Sign in
chromium
/
devtools
/
devtools-frontend.git
/
HEAD
/
.
/
node_modules
/
object-inspect
/
example
/
circular.js
blob: 487a7c169d0df8c4acb6ad02b26ce76175ecfc0f [
file
] [
log
] [
blame
]
'use strict'
;
var
inspect
=
require
(
'../'
);
var
obj
=
{
a
:
1
,
b
:
[
3
,
4
]
};
obj
.
c
=
obj
;
console
.
log
(
inspect
(
obj
));