mirror of
https://github.com/toss/es-toolkit.git
synced 2024-11-28 12:05:41 +03:00
3cc1a03519
* chore: add codspeed * chore: fix the benchmark file to clearly distinguish between the comparison targets * chore: fix typo
18 lines
440 B
TypeScript
18 lines
440 B
TypeScript
import { union as unionToolkit } from 'es-toolkit';
|
|
import { union as unionLodash } from 'lodash';
|
|
import { bench, describe } from 'vitest';
|
|
|
|
describe('union', () => {
|
|
bench('es-toolkit/union', () => {
|
|
const array1 = [1, 2, 3];
|
|
const array2 = [3, 4, 5];
|
|
unionToolkit(array1, array2);
|
|
});
|
|
|
|
bench('lodash/union', () => {
|
|
const array1 = [1, 2, 3];
|
|
const array2 = [3, 4, 5];
|
|
unionLodash(array1, array2);
|
|
});
|
|
});
|