2024-04-25 14:56:13 +03:00
|
|
|
import { bench, describe } from 'vitest';
|
|
|
|
import { intersectionWith as intersectionWithToolkit } from 'es-toolkit';
|
|
|
|
import { intersectionWith as intersectionWithLodash } from 'lodash';
|
|
|
|
|
|
|
|
describe('intersectionWith', () => {
|
2024-06-18 04:40:07 +03:00
|
|
|
bench('es-toolkit/intersectionWith', () => {
|
2024-04-25 14:56:13 +03:00
|
|
|
const array1 = [{ id: 1 }, { id: 2 }, { id: 3 }];
|
|
|
|
const array2 = [{ id: 2 }, { id: 4 }];
|
|
|
|
const areItemsEqual = (a, b) => a.id === b.id;
|
|
|
|
intersectionWithToolkit(array1, array2, areItemsEqual);
|
2024-06-04 11:19:26 +03:00
|
|
|
});
|
2024-04-25 14:56:13 +03:00
|
|
|
|
2024-06-18 04:40:07 +03:00
|
|
|
bench('lodash/intersectionWith', () => {
|
2024-04-25 14:56:13 +03:00
|
|
|
const array1 = [{ id: 1 }, { id: 2 }, { id: 3 }];
|
|
|
|
const array2 = [{ id: 2 }, { id: 4 }];
|
|
|
|
const areItemsEqual = (a, b) => a.id === b.id;
|
|
|
|
intersectionWithLodash(array1, array2, areItemsEqual);
|
2024-06-04 11:19:26 +03:00
|
|
|
});
|
|
|
|
});
|