summaryrefslogtreecommitdiff
path: root/benchmark/streams/transform-creation.js
blob: bd5ac96fa71e326b5d9e9966121715fcbb3b88bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
'use strict';
const common = require('../common.js');
const Transform = require('stream').Transform;
const inherits = require('util').inherits;

const bench = common.createBenchmark(main, {
  n: [1e6]
});

function MyTransform() {
  Transform.call(this);
}
inherits(MyTransform, Transform);
MyTransform.prototype._transform = function() {};

function main(conf) {
  const n = +conf.n;

  bench.start();
  for (var i = 0; i < n; ++i)
    new MyTransform();
  bench.end(n);
}