mirror of
https://github.com/toss/es-toolkit.git
synced 2024-11-24 11:45:26 +03:00
3cc1a03519
* chore: add codspeed * chore: fix the benchmark file to clearly distinguish between the comparison targets * chore: fix typo
14 lines
358 B
TypeScript
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);
|
|
});
|
|
});
|