es-toolkit/benchmarks/takeRight.bench.ts
Minsoo Kim cf65b2c601
style(*): Setup prettier and apply formatting (#24)
* chore: add prettierrc

* chore: apply format with prettier config

* chore: eslint error fix
2024-06-04 17:19:26 +09:00

14 lines
338 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', () => {
takeRightToolkit([1, 2, 3, 4], 2);
});
bench('lodash', () => {
takeRightLodash([1, 2, 3, 4], 2);
});
});