mirror of
https://github.com/toss/es-toolkit.git
synced 2024-11-28 20:26:33 +03:00
25 lines
652 B
TypeScript
25 lines
652 B
TypeScript
import { bench, describe } from 'vitest';
|
|
import { find as findToolkit } from 'es-toolkit/compat';
|
|
import { find as findLodash } from 'lodash';
|
|
|
|
const items = [
|
|
{ id: 1, name: 'Alice' },
|
|
{ id: 2, name: 'Bob' },
|
|
];
|
|
|
|
describe('find', () => {
|
|
bench('es-toolkit/compat/find', () => {
|
|
findToolkit(items, x => x.name === 'Bob');
|
|
findToolkit(items, { name: 'Bob' });
|
|
findToolkit(items, ['name', 'Bob']);
|
|
findToolkit(items, 'name');
|
|
});
|
|
|
|
bench('lodash/find', () => {
|
|
findLodash(items, x => x.name === 'Bob');
|
|
findLodash(items, { name: 'Bob' });
|
|
findLodash(items, ['name', 'Bob']);
|
|
findLodash(items, 'name');
|
|
});
|
|
});
|