es-toolkit/benchmarks/performance/forEachRight.bench.ts

14 lines
413 B
TypeScript
Raw Normal View History

import { bench, describe } from 'vitest';
import { forEachRight as forEachRightTookit } from 'es-toolkit';
import { forEachRight as forEachRightLodash } from 'lodash';
describe('forEachRight', () => {
bench('es-toolkit/forEachRight', () => {
forEachRightTookit([1, 2, 3, 4, 5, 6], x => x + 3);
});
bench('lodash/forEachRight', () => {
forEachRightLodash([1, 2, 3, 4, 5, 6], x => x + 3);
});
});