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

14 lines
310 B
TypeScript

import { bench, describe } from 'vitest';
import { round as roundToolkit } from 'es-toolkit';
import { round as roundLodash } from 'lodash';
describe('round', () => {
bench('es-toolkit/round', () => {
roundToolkit(1.2345, 2);
});
bench('lodash/round', () => {
roundLodash(1.2345, 2);
});
});