es-toolkit/benchmarks/performance/union.bench.ts
2024-07-17 11:47:39 +09:00

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);
});
});