mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
474 B
23 lines
474 B
'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);
|
|
}
|
|
|