forked from flightcontrolhq/superjson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
benchmark.js
93 lines (88 loc) · 1.93 KB
/
benchmark.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import Benchmark from "benchmark"
import SuperJSON from "./dist/index.js"
const instances = {
'toy example': {
a: new Map([
[1, NaN],
[2, null],
[3, 'Hurray'],
]),
a: /regexp/g,
b: [new Set([1, 2, 3])],
},
'user graph': {
users: new Map([
[
'abcde',
{
id: 'abcde',
created: new Date(2020),
friendIds: new Set(['a', 'b', 'c']),
},
],
[
'dasdfa',
{
id: 'dasdfa',
created: new Date(2019),
friendIds: new Set(['b', 'c']),
},
],
[
'hu-ha-hu',
{
id: 'hu-ha-hu',
created: new Date(2018),
friendIds: new Set(['b', 'c', 'd', 'f']),
},
],
[
'umphrey',
{ id: 'umphrey', created: new Date(2017), friendIds: new Set([]) },
],
]),
},
'deep nested': (() => {
const data = [];
for (let i = 0; i < 100; i++) {
let nested1 = [];
let nested2 = [];
for (let j = 0; j < 10; j++) {
nested1[j] = {
createdAt: new Date(),
updatedAt: new Date(),
innerNested: {
createdAt: new Date(),
updatedAt: new Date(),
},
};
nested2[j] = {
createdAt: new Date(),
updatedAt: new Date(),
innerNested: {
createdAt: new Date(),
updatedAt: new Date(),
},
};
}
const object = {
createdAt: new Date(),
updatedAt: new Date(),
nested1,
nested2,
};
data.push(object);
}
return data;
})(),
};
const suite = new Benchmark.Suite('serialize & deserialize');
for (const [key, instance] of Object.entries(instances)) {
suite.add(key, () => {
SuperJSON.deserialize(SuperJSON.serialize(instance));
});
}
suite.on('cycle', event => {
console.log('' + event.target);
});
suite.run();