es-toolkit/benchmarks/dropRightWhile.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
397 B
TypeScript

import { bench, describe } from 'vitest';
import { dropRightWhile as dropRightWhileToolkit } from 'es-toolkit';
import { dropRightWhile as dropRightWhileLodash } from 'lodash';
describe('dropRightWhile', () => {
bench('es-toolkit', () => {
dropRightWhileToolkit([1.2, 2.3, 3.4], x => x < 2);
});
bench('lodash', () => {
dropRightWhileLodash([1.2, 2.3, 3.4], x => x < 2);
});
});