blob: 29c83bd188e89d3428ffa8ebc9ad6046c51eefd7 (
plain)
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
|
'use strict';
const common = require('../common.js');
const bench = common.createBenchmark(main, {
method: ['normal', 'destructureObject'],
n: [1e8]
});
function runNormal(n) {
const o = { x: 0, y: 1 };
bench.start();
for (let i = 0; i < n; i++) {
/* eslint-disable no-unused-vars */
const x = o.x;
const y = o.y;
const r = o.r || 2;
/* eslint-enable no-unused-vars */
}
bench.end(n);
}
function runDestructured(n) {
const o = { x: 0, y: 1 };
bench.start();
for (let i = 0; i < n; i++) {
/* eslint-disable no-unused-vars */
const { x, y, r = 2 } = o;
/* eslint-enable no-unused-vars */
}
bench.end(n);
}
function main({ n, method }) {
switch (method) {
case 'normal':
runNormal(n);
break;
case 'destructureObject':
runDestructured(n);
break;
default:
throw new Error(`Unexpected method "${method}"`);
}
}
|