source: trip-planner-front/node_modules/fast-json-stable-stringify/benchmark/index.js@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 740 bytes
Line 
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});
Note: See TracBrowser for help on using the repository browser.