es-toolkit/benchmarks/intersection.bench.ts
Jun 3cc1a03519
chore(*): Add codspeed for benchmark visualization (#75)
* chore: add codspeed

* chore: fix the benchmark file to clearly distinguish between the comparison targets

* chore: fix typo
2024-06-18 10:40:07 +09:00

30 lines
856 B
TypeScript

import { bench, describe } from 'vitest';
import { intersection as intersectionToolkit } from 'es-toolkit';
import { intersection as intersectionLodash } from 'lodash';
describe('intersection, small arrays', () => {
const array1 = [1, 2, 3];
const array2 = [2, 4];
bench('es-toolkit/intersection', () => {
intersectionToolkit(array1, array2);
});
bench('lodash/intersection', () => {
intersectionLodash(array1, array2);
});
});
describe('intersection, large arrays', () => {
const array1 = Array.from({ length: 10000 }, () => Math.floor(Math.random() * 1000));
const array2 = Array.from({ length: 10000 }, () => Math.floor(Math.random() * 1000));
bench('es-toolkit/intersection', () => {
intersectionToolkit(array1, array2);
});
bench('lodash/intersection', () => {
intersectionLodash(array1, array2);
});
});