%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/vacivi36/vittasync.vacivitta.com.br/vittasync/node/benchmark/url/
Upload File :
Create Path :
Current File : /home/vacivi36/vittasync.vacivitta.com.br/vittasync/node/benchmark/url/url-parse.js

'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 (let i = 0; i < n; i += 1)
    url.parse(input);
  bench.end(n);
}

Zerion Mini Shell 1.0