0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/benchmark/url/whatwg-url-idna.js
Ruben Bridgewater 49f5e08188
benchmark: (url) use destructuring
PR-URL: https://github.com/nodejs/node/pull/18250
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
2018-01-23 01:29:16 +01:00

44 lines
853 B
JavaScript

'use strict';
const common = require('../common.js');
const { domainToASCII, domainToUnicode } = require('url');
const inputs = {
empty: {
ascii: '',
unicode: ''
},
none: {
ascii: 'passports',
unicode: 'passports'
},
some: {
ascii: 'Paßstraße',
unicode: 'xn--Pastrae-1vae'
},
all: {
ascii: '他们不说中文',
unicode: 'xn--ihqwczyycu19kkg2c'
},
nonstring: {
ascii: { toString() { return ''; } },
unicode: { toString() { return ''; } }
}
};
const bench = common.createBenchmark(main, {
input: Object.keys(inputs),
to: ['ascii', 'unicode'],
n: [5e6]
});
function main({ n, to, input }) {
const value = inputs[input][to];
const method = to === 'ascii' ? domainToASCII : domainToUnicode;
bench.start();
for (var i = 0; i < n; i++) {
method(value);
}
bench.end(n);
}