es-toolkit/benchmarks/uniqBy.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

27 lines
688 B
TypeScript

import { bench, describe } from 'vitest';
import { uniqBy as uniqByToolkit } from 'es-toolkit';
import { uniqBy as uniqByLodash } from 'lodash';
import { randomInt } from 'crypto';
describe('uniqBy, small arrays', () => {
bench('es-toolkit/uniqBy', () => {
uniqByToolkit([2.1, 1.2, 2.3], Math.floor);
});
bench('lodash/uniqBy', () => {
uniqByLodash([2.1, 1.2, 2.3], Math.floor);
});
});
describe('uniqBy, large arrays', () => {
const array = Array.from({ length: 10000 }).map(() => randomInt(0, 10000));
bench('es-toolkit/uniqBy', () => {
uniqByToolkit(array, Math.floor);
});
bench('lodash/uniqBy', () => {
uniqByLodash(array, Math.floor);
});
});