Sha256: 4c625c4212fc3ede83966b8ea66a4d669244a7f328d247991e4008239e258d13

Contents?: true

Size: 904 Bytes

Versions: 3

Compression:

Stored size: 904 Bytes

Contents

'use strict';

const util = require('util');
const common = require('../common');
const v8 = require('v8');
const bench = common.createBenchmark(main, {
  n: [1e6],
  type: ['string',
         'number',
         'object',
         'unknown',
         'no-replace']
});

const inputs = {
  'string': ['Hello, my name is %s', 'fred'],
  'number': ['Hi, I was born in %d', 1942],
  'object': ['An error occurred %j', {msg: 'This is an error', code: 'ERR'}],
  'unknown': ['hello %a', 'test'],
  'no-replace': [1, 2]
};

function main(conf) {
  const n = conf.n | 0;
  const type = conf.type;

  const input = inputs[type];

  v8.setFlagsFromString('--allow_natives_syntax');

  util.format(input[0], input[1]);
  eval('%OptimizeFunctionOnNextCall(util.format)');
  util.format(input[0], input[1]);

  bench.start();
  for (var i = 0; i < n; i++) {
    util.format(input[0], input[1]);
  }
  bench.end(n);
}

Version data entries

3 entries across 2 versions & 1 rubygems

Version Path
node-compiler-0.8.0 vendor/node-v7.2.0/benchmark/util/format.js
node-compiler-0.7.0 vendor/node-v6.9.1/benchmark/util/format.js
node-compiler-0.7.0 vendor/node-v7.1.0/benchmark/util/format.js