mirror of
https://github.com/toss/es-toolkit.git
synced 2024-12-11 08:54:07 +03:00
17 lines
582 B
TypeScript
17 lines
582 B
TypeScript
import { bench, describe } from 'vitest';
|
|
import { omitBy as omitByToolkit } from 'es-toolkit';
|
|
import { omitBy as omitByLodash } from 'lodash';
|
|
|
|
describe('omitBy', () => {
|
|
bench('es-toolkit', () => {
|
|
const obj = { a: 1, b: 'omit', c: 3 };
|
|
const shouldOmit = (value: number | string, key: string) => typeof value === 'string';
|
|
omitByToolkit(obj, shouldOmit);
|
|
})
|
|
|
|
bench('lodash', () => {
|
|
const obj = { a: 1, b: 'omit', c: 3 };
|
|
const shouldOmit = (value: number | string, key: string) => typeof value === 'string';
|
|
omitByLodash(obj, shouldOmit);
|
|
})
|
|
}); |