es-toolkit/benchmarks/clamp.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

16 lines
347 B
TypeScript

import { bench, describe } from 'vitest';
import { clamp as clampToolkit } from 'es-toolkit';
import { clamp as clampLodash } from 'lodash';
describe('clamp', () => {
bench('es-toolkit', () => {
clampToolkit(10, 5, 15);
clampToolkit(10, 5);
});
bench('lodash', () => {
clampLodash(10, 5, 15);
clampLodash(10, 5);
});
});