• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1'use strict';
2
3const Benchmark = require('benchmark');
4const suite = new Benchmark.Suite;
5const testData = require('./test.json');
6
7
8const stringifyPackages = {
9  // 'JSON.stringify': JSON.stringify,
10  'fast-json-stable-stringify': require('../index'),
11  'json-stable-stringify': true,
12  'fast-stable-stringify': true,
13  'faster-stable-stringify': true
14};
15
16
17for (const name in stringifyPackages) {
18  let func = stringifyPackages[name];
19  if (func === true) func = require(name);
20
21  suite.add(name, function() {
22    func(testData);
23  });
24}
25
26suite
27  .on('cycle', (event) => console.log(String(event.target)))
28  .on('complete', function () {
29    console.log('The fastest is ' + this.filter('fastest').map('name'));
30  })
31  .run({async: true});
32