Sha256: 512fe623a44bd92f72863a7c4d1623533677c04b6069b5414d4590970ebb0757

Contents?: true

Size: 784 Bytes

Versions: 5

Compression:

Stored size: 784 Bytes

Contents

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

var bench = common.createBenchmark(main, {
  props: [
    ['/', '/home/user/dir', 'index.html', '.html', 'index'].join('|')
  ],
  n: [1e7]
});

function main(conf) {
  var n = +conf.n;
  var p = path.posix;
  var props = ('' + conf.props).split('|');
  var obj = {
    root: props[0] || '',
    dir: props[1] || '',
    base: props[2] || '',
    ext: props[3] || '',
    name: props[4] || '',
  };

  // Force optimization before starting the benchmark
  p.format(obj);
  v8.setFlagsFromString('--allow_natives_syntax');
  eval('%OptimizeFunctionOnNextCall(p.format)');
  p.format(obj);

  bench.start();
  for (var i = 0; i < n; i++) {
    p.format(obj);
  }
  bench.end(n);
}

Version data entries

5 entries across 4 versions & 1 rubygems

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