Sha256: 3429c2ef7994839b04e472f561412650595ef997a8173673c6d409b58eb73b73

Contents?: true

Size: 740 Bytes

Versions: 148

Compression:

Stored size: 740 Bytes

Contents

'use strict';

const Benchmark = require('benchmark');
const suite = new Benchmark.Suite;
const testData = require('./test.json');


const stringifyPackages = {
  // 'JSON.stringify': JSON.stringify,
  'fast-json-stable-stringify': require('../index'),
  'json-stable-stringify': true,
  'fast-stable-stringify': true,
  'faster-stable-stringify': true
};


for (const name in stringifyPackages) {
  let func = stringifyPackages[name];
  if (func === true) func = require(name);

  suite.add(name, function() {
    func(testData);
  });
}

suite
  .on('cycle', (event) => console.log(String(event.target)))
  .on('complete', function () {
    console.log('The fastest is ' + this.filter('fastest').map('name'));
  })
  .run({async: true});

Version data entries

148 entries across 147 versions & 18 rubygems

Version Path
trusty-cms-4.3.4 node_modules/fast-json-stable-stringify/benchmark/index.js
trusty-cms-4.3.3 node_modules/fast-json-stable-stringify/benchmark/index.js
trusty-cms-4.3.2 node_modules/fast-json-stable-stringify/benchmark/index.js
trusty-cms-4.3.1 node_modules/fast-json-stable-stringify/benchmark/index.js
trusty-cms-4.3 node_modules/fast-json-stable-stringify/benchmark/index.js
trusty-cms-4.2.3 node_modules/fast-json-stable-stringify/benchmark/index.js
tang-0.2.1 spec/tang_app/node_modules/fast-json-stable-stringify/benchmark/index.js
trusty-cms-4.2.2 node_modules/fast-json-stable-stringify/benchmark/index.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/fast-json-stable-stringify/benchmark/index.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/fast-json-stable-stringify/benchmark/index.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/fast-json-stable-stringify/benchmark/index.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/fast-json-stable-stringify/benchmark/index.js
trusty-cms-4.2.1 node_modules/fast-json-stable-stringify/benchmark/index.js
trusty-cms-4.2 node_modules/fast-json-stable-stringify/benchmark/index.js
trusty-cms-4.1.9 node_modules/fast-json-stable-stringify/benchmark/index.js
trusty-cms-4.1.8 node_modules/fast-json-stable-stringify/benchmark/index.js
tang-0.2.0 spec/tang_app/node_modules/fast-json-stable-stringify/benchmark/index.js
trusty-cms-4.1.7 node_modules/fast-json-stable-stringify/benchmark/index.js
tang-0.1.0 spec/tang_app/node_modules/fast-json-stable-stringify/benchmark/index.js
tang-0.0.9 spec/tang_app/node_modules/fast-json-stable-stringify/benchmark/index.js