mirror of
https://github.com/toss/es-toolkit.git
synced 2024-11-29 04:34:01 +03:00
20 lines
745 B
TypeScript
20 lines
745 B
TypeScript
import { bench, describe } from 'vitest';
|
|
import { intersectionWith as intersectionWithToolkit } from 'es-toolkit';
|
|
import { intersectionWith as intersectionWithLodash } from 'lodash';
|
|
|
|
describe('intersectionWith', () => {
|
|
bench('es-toolkit/intersectionWith', () => {
|
|
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);
|
|
});
|
|
|
|
bench('lodash/intersectionWith', () => {
|
|
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);
|
|
});
|
|
});
|