0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 07:27:22 +01:00
nodejs/benchmark/timers/timers-cancel-unpooled.js
Vse Mozhet Byt 22aa3d4899 benchmark: reduce string concatenations
PR-URL: https://github.com/nodejs/node/pull/12455
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
2017-04-20 04:46:37 +03:00

27 lines
554 B
JavaScript

'use strict';
var common = require('../common.js');
var assert = require('assert');
var bench = common.createBenchmark(main, {
thousands: [100],
});
function main(conf) {
var iterations = +conf.thousands * 1e3;
var timersList = [];
for (var i = 0; i < iterations; i++) {
timersList.push(setTimeout(cb, i + 1));
}
bench.start();
for (var j = 0; j < iterations + 1; j++) {
clearTimeout(timersList[j]);
}
bench.end(iterations / 1e3);
}
function cb() {
assert(false, `Timer ${this._idleTimeout} should not call callback`);
}