es-toolkit/benchmarks/omit.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
357 B
TypeScript

import { bench, describe } from 'vitest';
import { omit as omitToolkit } from 'es-toolkit';
import { omit as omitLodash } from 'lodash';
describe('omit', () => {
bench('es-toolkit', () => {
omitToolkit({ foo: 1, bar: 2, baz: 3 }, ['foo', 'bar']);
});
bench('lodash', () => {
omitLodash({ foo: 1, bar: 2, baz: 3 }, ['foo', 'bar']);
});
});