X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=deep-clone-object.mjs;h=40b508da1505dd0b43984de6c62bff34f5b1442f;hb=HEAD;hp=8206cd9948a0997160f7986193939d74ca001e7a;hpb=896570f75bba05688050ab104915cd638cc327fd;p=benchmarks-js.git diff --git a/deep-clone-object.mjs b/deep-clone-object.mjs index 8206cd9..eda04d0 100644 --- a/deep-clone-object.mjs +++ b/deep-clone-object.mjs @@ -1,46 +1,34 @@ -/* eslint-disable no-unused-vars */ -import Benchmark from 'benny' -import _ from 'lodash' -import clone from 'just-clone' import deepClone from 'deep-clone' +import clone from 'just-clone' +import _ from 'lodash' +import { clone as rambdaClone } from 'rambda' +import { bench, group, run } from 'tatami-ng' + import { generateRandomObject } from './benchmark-utils.mjs' const object = generateRandomObject() -Benchmark.suite( - `Deep clone object with ${Object.keys(object).length} keys`, - Benchmark.add('JSON stringify/parse', (obj = object) => { - const objCloned = JSON.parse(JSON.stringify(obj)) - }), - Benchmark.add('structuredClone', (obj = object) => { - const objCloned = structuredClone(obj) - }), - Benchmark.add('lodash cloneDeep', (obj = object) => { - const objCloned = _.cloneDeep(obj) - }), - Benchmark.add('just-clone', (obj = object) => { - const objCloned = clone(obj) - }), - Benchmark.add('deep-clone', (obj = object) => { - const objCloned = deepClone(obj) - }), - Benchmark.cycle(), - Benchmark.complete(), - Benchmark.save({ - file: 'deep-clone-object', - format: 'json', - details: true - }), - Benchmark.save({ - file: 'deep-clone-object', - format: 'chart.html', - details: true - }), - Benchmark.save({ - file: 'deep-clone-object', - format: 'table.html', - details: true +group(`Deep clone object with ${Object.keys(object).length} keys`, () => { + bench('JSON stringify/parse', (obj = object) => { + JSON.parse(JSON.stringify(obj)) + }) + bench('structuredClone', (obj = object) => { + structuredClone(obj) }) -).catch(err => { - console.error(err) + bench('lodash cloneDeep', (obj = object) => { + _.cloneDeep(obj) + }) + bench('rambda clone', (obj = object) => { + rambdaClone(obj) + }) + bench('just-clone', (obj = object) => { + clone(obj) + }) + bench('deep-clone', (obj = object) => { + deepClone(obj) + }) +}) + +await run({ + units: true, })