0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/benchmark/buffers/buffer-normalize-encoding.js
Alex Ramirez 8be3766353 benchmark: swap var for let in buffer benchmarks
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>
2019-07-30 09:38:32 -07:00

39 lines
598 B
JavaScript

'use strict';
const common = require('../common.js');
const bench = common.createBenchmark(main, {
encoding: [
'ascii',
'base64',
'BASE64',
'binary',
'hex',
'HEX',
'latin1',
'LATIN1',
'UCS-2',
'UCS2',
'utf-16le',
'UTF-16LE',
'utf-8',
'utf16le',
'UTF16LE',
'utf8',
'UTF8',
],
n: [1e6]
}, {
flags: ['--expose-internals']
});
function main({ encoding, n }) {
const { normalizeEncoding } = require('internal/util');
bench.start();
for (let i = 0; i < n; i++) {
normalizeEncoding(encoding);
}
bench.end(n);
}