Gitiles
Code Review
Sign In
gerrit.openfyde.cn
/
chromium.googlesource.com
/
devtools
/
devtools-frontend
/
74af6f82c6cad0a86ecebd681e4c28f19c8b01b2
/
.
/
node_modules
/
fast-json-stable-stringify
/
example
/
nested.js
blob: 9a672fc65fb0fcf3112e578571df647a1acf0f46 [
file
] [
log
] [
blame
]
Yang Guo
4fd355c
2019-09-19 10:59:03 +0200
[
diff
] [
blame
]
1
var
stringify
=
require
(
'../'
);
2
var
obj
=
{
c
:
8
,
b
:
[{
z
:
6
,
y
:
5
,
x
:
4
},
7
],
a
:
3
};
3
console
.
log
(
stringify
(
obj
));