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
immosquare-cleaner-0.1.6 node_modules/fast-json-stable-stringify/benchmark/index.js
decidim-0.26.8 packages/eslint-config/node_modules/fast-json-stable-stringify/benchmark/index.js
disco_app-0.18.0 test/dummy/node_modules/fast-json-stable-stringify/benchmark/index.js
disco_app-0.18.2 test/dummy/node_modules/fast-json-stable-stringify/benchmark/index.js
trusty-cms-5.0.7 node_modules/fast-json-stable-stringify/benchmark/index.js
trusty-cms-5.0.6 node_modules/fast-json-stable-stringify/benchmark/index.js
trusty-cms-5.0.5 node_modules/fast-json-stable-stringify/benchmark/index.js
trusty-cms-5.0.4 node_modules/fast-json-stable-stringify/benchmark/index.js
disco_app-0.16.1 test/dummy/node_modules/fast-json-stable-stringify/benchmark/index.js
disco_app-0.15.2 test/dummy/node_modules/fast-json-stable-stringify/benchmark/index.js
trusty-cms-5.0.3 node_modules/fast-json-stable-stringify/benchmark/index.js
trusty-cms-5.0.2 node_modules/fast-json-stable-stringify/benchmark/index.js
disco_app-0.18.4 test/dummy/node_modules/fast-json-stable-stringify/benchmark/index.js
disco_app-0.18.1 test/dummy/node_modules/fast-json-stable-stringify/benchmark/index.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/fast-json-stable-stringify/benchmark/index.js
disco_app-0.14.0 test/dummy/node_modules/fast-json-stable-stringify/benchmark/index.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/fast-json-stable-stringify/benchmark/index.js
trusty-cms-5.0.1 node_modules/fast-json-stable-stringify/benchmark/index.js
trusty-cms-4.3.5 node_modules/fast-json-stable-stringify/benchmark/index.js
trusty-cms-5.0.0 node_modules/fast-json-stable-stringify/benchmark/index.js