summaryrefslogtreecommitdiff
path: root/benchmark/misc/util-extend-vs-object-assign.js
blob: f2a039bc5d71fcbef2d802b98ad50bac6af5f526 (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
'use strict';

const common = require('../common.js');
const util = require('util');

const bench = common.createBenchmark(main, {
  type: ['extend', 'assign'],
  n: [10e4]
});

function main(conf) {
  let fn;
  const n = conf.n | 0;

  if (conf.type === 'extend') {
    fn = util._extend;
  } else if (conf.type === 'assign') {
    fn = Object.assign;
  }

  // Force-optimize the method to test so that the benchmark doesn't
  // get disrupted by the optimizer kicking in halfway through.
  for (var i = 0; i < conf.type.length * 10; i += 1)
    fn({}, process.env);

  const obj = new Proxy({}, { set: function(a, b, c) { return true; } });

  bench.start();
  for (var j = 0; j < n; j += 1)
    fn(obj, process.env);
  bench.end(n);
}