Sha256: 29d635d9243a9ff711c2fb4f61950e9de2fddb1b0ad56504145e752d3f69565e

Contents?: true

Size: 741 Bytes

Versions: 5

Compression:

Stored size: 741 Bytes

Contents

'use strict';
var common = require('../common.js');
var path = require('path');
var v8 = require('v8');

var bench = common.createBenchmark(main, {
  paths: [
    '',
    ['', ''].join('|'),
    ['foo/bar', '/tmp/file/', '..', 'a/../subfile'].join('|'),
    ['a/b/c/', '../../..'].join('|')
  ],
  n: [1e6]
});

function main(conf) {
  var n = +conf.n;
  var p = path.posix;
  var args = ('' + conf.paths).split('|');

  // Force optimization before starting the benchmark
  p.resolve.apply(null, args);
  v8.setFlagsFromString('--allow_natives_syntax');
  eval('%OptimizeFunctionOnNextCall(p.resolve)');
  p.resolve.apply(null, args);

  bench.start();
  for (var i = 0; i < n; i++) {
    p.resolve.apply(null, args);
  }
  bench.end(n);
}

Version data entries

5 entries across 4 versions & 1 rubygems

Version Path
node-compiler-0.9.1 vendor/node/benchmark/path/resolve-posix.js
node-compiler-0.9.0 vendor/node-v7.2.1/benchmark/path/resolve-posix.js
node-compiler-0.8.0 vendor/node-v7.2.0/benchmark/path/resolve-posix.js
node-compiler-0.7.0 vendor/node-v6.9.1/benchmark/path/resolve-posix.js
node-compiler-0.7.0 vendor/node-v7.1.0/benchmark/path/resolve-posix.js