mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
8be3766353
In benchmark buffers directory this changes for loops using var to let when it applies for consistency PR-URL: https://github.com/nodejs/node/pull/28867 Reviewed-By: Jan Krems <jan.krems@gmail.com> Reviewed-By: Khaidi Chu <i@2333.moe> Reviewed-By: Rich Trott <rtrott@gmail.com>
21 lines
435 B
JavaScript
21 lines
435 B
JavaScript
'use strict';
|
|
const common = require('../common.js');
|
|
const SlowBuffer = require('buffer').SlowBuffer;
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
type: ['fast', 'slow'],
|
|
n: [1e6]
|
|
});
|
|
|
|
const buf = Buffer.allocUnsafe(1024);
|
|
const slowBuf = new SlowBuffer(1024);
|
|
|
|
function main({ n, type }) {
|
|
const b = type === 'fast' ? buf : slowBuf;
|
|
bench.start();
|
|
for (let i = 0; i < n; i++) {
|
|
b.slice(10, 256);
|
|
}
|
|
bench.end(n);
|
|
}
|