mirror of
https://github.com/toss/es-toolkit.git
synced 2024-11-28 20:26:33 +03:00
20 lines
660 B
TypeScript
20 lines
660 B
TypeScript
import { bench, describe } from 'vitest';
|
|
import { unionWith as unionWithToolkit } from 'es-toolkit';
|
|
import { unionWith as unionWithLodash } from 'lodash';
|
|
|
|
describe('unionWith', () => {
|
|
bench('es-toolkit/unionWith', () => {
|
|
const array1 = [{ id: 1 }, { id: 2 }];
|
|
const array2 = [{ id: 2 }, { id: 3 }];
|
|
const areItemsEqual = (a, b) => a.id === b.id;
|
|
unionWithToolkit(array1, array2, areItemsEqual);
|
|
});
|
|
|
|
bench('lodash/unionWith', () => {
|
|
const array1 = [{ id: 1 }, { id: 2 }];
|
|
const array2 = [{ id: 2 }, { id: 3 }];
|
|
const areItemsEqual = (a, b) => a.id === b.id;
|
|
unionWithLodash(array1, array2, areItemsEqual);
|
|
});
|
|
});
|