es-toolkit/benchmarks/performance/intersection.bench.ts

30 lines
856 B
TypeScript
Raw Normal View History

2024-04-25 14:56:13 +03:00
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);
});
2024-04-25 14:56:13 +03:00
bench('lodash/intersection', () => {
intersectionLodash(array1, array2);
});
});