mirror of
https://github.com/toss/es-toolkit.git
synced 2024-11-28 20:26:33 +03:00
20 lines
683 B
TypeScript
20 lines
683 B
TypeScript
import { bench, describe } from 'vitest';
|
|
import { intersectionBy as intersectionByToolkit } from 'es-toolkit';
|
|
import { intersectionBy as intersectionByLodash } from 'lodash';
|
|
|
|
describe('intersectionBy', () => {
|
|
bench('es-toolkit/intersectionBy', () => {
|
|
const array1 = [{ id: 1 }, { id: 2 }, { id: 3 }];
|
|
const array2 = [{ id: 2 }, { id: 4 }];
|
|
const mapper = item => item.id;
|
|
intersectionByToolkit(array1, array2, mapper);
|
|
});
|
|
|
|
bench('lodash/intersectionBy', () => {
|
|
const array1 = [{ id: 1 }, { id: 2 }, { id: 3 }];
|
|
const array2 = [{ id: 2 }, { id: 4 }];
|
|
const mapper = item => item.id;
|
|
intersectionByLodash(array1, array2, mapper);
|
|
});
|
|
});
|