Sha256: 3429c2ef7994839b04e472f561412650595ef997a8173673c6d409b58eb73b73

Contents?: true

Size: 740 Bytes

Versions: 161

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

161 entries across 160 versions & 19 rubygems

Version Path
govuk_publishing_components-16.25.0 node_modules/fast-json-stable-stringify/benchmark/index.js
govuk_publishing_components-16.24.0 node_modules/fast-json-stable-stringify/benchmark/index.js
govuk_publishing_components-16.23.0 node_modules/fast-json-stable-stringify/benchmark/index.js
govuk_publishing_components-16.22.0 node_modules/fast-json-stable-stringify/benchmark/index.js
govuk_publishing_components-16.21.0 node_modules/fast-json-stable-stringify/benchmark/index.js
govuk_publishing_components-16.20.1 node_modules/fast-json-stable-stringify/benchmark/index.js
govuk_publishing_components-16.20.0 node_modules/fast-json-stable-stringify/benchmark/index.js
govuk_publishing_components-16.19.0 node_modules/fast-json-stable-stringify/benchmark/index.js
govuk_publishing_components-16.18.0 node_modules/fast-json-stable-stringify/benchmark/index.js
govuk_publishing_components-16.17.0 node_modules/fast-json-stable-stringify/benchmark/index.js
optimacms-0.4.3 spec/dummy/node_modules/fast-json-stable-stringify/benchmark/index.js
optimacms-0.4.2 spec/dummy/node_modules/fast-json-stable-stringify/benchmark/index.js
locomotivecms-4.0.0.alpha1 app/javascript/node_modules/fast-json-stable-stringify/benchmark/index.js
lux_assets-0.2.11 ./node_modules/fast-json-stable-stringify/benchmark/index.js
lux_assets-0.2.9 ./node_modules/fast-json-stable-stringify/benchmark/index.js
lux_assets-0.2.4 ./node_modules/fast-json-stable-stringify/benchmark/index.js
lux_assets-0.2.2 ./node_modules/fast-json-stable-stringify/benchmark/index.js
lux_assets-0.2.1 ./node_modules/fast-json-stable-stringify/benchmark/index.js
locomotivecms-3.4.0 app/javascript/node_modules/fast-json-stable-stringify/benchmark/index.js
cortex-0.1.3 spec/dummy/node_modules/fast-json-stable-stringify/benchmark/index.js