summaryrefslogtreecommitdiff
path: root/benchmark/url/url-parse.js
blob: 83f626ccdadfe35eef31c22c4a9005954796e7ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
'use strict';
const common = require('../common.js');
const url = require('url');

const inputs = {
  normal: 'http://foo.com/bar',
  escaped: 'https://foo.bar/{}^`/abcd'
};

const bench = common.createBenchmark(main, {
  type: Object.keys(inputs),
  n: [1e7]
});

function main({ type, n }) {
  const input = inputs[type] || '';

  bench.start();
  for (var i = 0; i < n; i += 1)
    url.parse(input);
  bench.end(n);
}