repositories
/
benchmarks-js.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
build(deps-dev): apply updates
[benchmarks-js.git]
/
json-stringify.mjs
1
import { bench, group, run } from 'tatami-ng'
2
3
const sampleObj = {
4
name: 'Sid',
5
age: 29,
6
engineer: true,
7
expertise: ['html', 'css', 'react'],
8
address: {
9
city: 'New york',
10
state: 'NY',
11
},
12
}
13
14
group('JSON stringify', () => {
15
bench('JSON.stringify', () => {
16
JSON.stringify(sampleObj)
17
})
18
})
19
20
await run({
21
units: true,
22
})