es-toolkit/benchmarks/performance/unionWith.bench.ts

20 lines
660 B
TypeScript
Raw Normal View History

2024-04-25 14:56:13 +03:00
import { bench, describe } from 'vitest';
import { unionWith as unionWithToolkit } from 'es-toolkit';
import { unionWith as unionWithLodash } from 'lodash';
describe('unionWith', () => {
bench('es-toolkit/unionWith', () => {
2024-04-25 14:56:13 +03:00
const array1 = [{ id: 1 }, { id: 2 }];
const array2 = [{ id: 2 }, { id: 3 }];
const areItemsEqual = (a, b) => a.id === b.id;
unionWithToolkit(array1, array2, areItemsEqual);
});
2024-04-25 14:56:13 +03:00
bench('lodash/unionWith', () => {
2024-04-25 14:56:13 +03:00
const array1 = [{ id: 1 }, { id: 2 }];
const array2 = [{ id: 2 }, { id: 3 }];
const areItemsEqual = (a, b) => a.id === b.id;
unionWithLodash(array1, array2, areItemsEqual);
});
});