es-toolkit/benchmarks/performance/dropRightWhile.bench.ts
2024-07-17 11:47:39 +09:00

14 lines
427 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/dropRightWhile', () => {
dropRightWhileToolkit([1.2, 2.3, 3.4], x => x < 2);
});
bench('lodash/dropRightWhile', () => {
dropRightWhileLodash([1.2, 2.3, 3.4], x => x < 2);
});
});