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