mirror of
https://github.com/toss/es-toolkit.git
synced 2025-01-08 17:31:36 +03:00
3cc1a03519
* chore: add codspeed * chore: fix the benchmark file to clearly distinguish between the comparison targets * chore: fix typo
14 lines
292 B
TypeScript
14 lines
292 B
TypeScript
import { bench, describe } from 'vitest';
|
|
import { sum as sumToolkit } from 'es-toolkit';
|
|
import { sum as sumLodash } from 'lodash';
|
|
|
|
describe('sum', () => {
|
|
bench('es-toolkit/sum', () => {
|
|
sumToolkit([1, 2, 3]);
|
|
});
|
|
|
|
bench('lodash/sum', () => {
|
|
sumLodash([1, 2, 3]);
|
|
});
|
|
});
|