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

14 lines
358 B
TypeScript

import { bench, describe } from 'vitest';
import { takeRight as takeRightToolkit } from 'es-toolkit';
import { takeRight as takeRightLodash } from 'lodash';
describe('takeRight', () => {
bench('es-toolkit/takeRight', () => {
takeRightToolkit([1, 2, 3, 4], 2);
});
bench('lodash/takeRight', () => {
takeRightLodash([1, 2, 3, 4], 2);
});
});