mirror of https://github.com/lukechilds/node.git
Browse Source
PR-URL: https://github.com/nodejs/node/pull/13322 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>v6
committed by
James M Snell
2 changed files with 53 additions and 37 deletions
@ -0,0 +1,23 @@ |
|||
'use strict'; |
|||
var common = require('../common.js'); |
|||
var Transform = require('stream').Transform; |
|||
var inherits = require('util').inherits; |
|||
|
|||
var bench = common.createBenchmark(main, { |
|||
n: [1e6] |
|||
}); |
|||
|
|||
function MyTransform() { |
|||
Transform.call(this); |
|||
} |
|||
inherits(MyTransform, Transform); |
|||
MyTransform.prototype._transform = function() {}; |
|||
|
|||
function main(conf) { |
|||
var n = +conf.n; |
|||
|
|||
bench.start(); |
|||
for (var i = 0; i < n; ++i) |
|||
new MyTransform(); |
|||
bench.end(n); |
|||
} |
Loading…
Reference in new issue