Sign in
webkit
/
WebKit
/
84f33502937aafb6ce5356edb4e15b2b5212e0f3
/
.
/
JSTests
/
microbenchmarks
/
json-stringify-many-objects-to-json.js
blob: 9d53f2eb5c973da3aa7ca95956eb8401ccf95393 [
file
] [
log
] [
blame
]
const
toJSON
=
()
=>
''
;
const
value
=
{};
for
(
let i
=
0
;
i
<
100
;
++
i
)
value
[
i
]
=
{
toJSON
};
for
(
let i
=
0
;
i
<
1e5
/
4
;
++
i
)
JSON
.
stringify
(
value
);