mirror of
https://github.com/toss/es-toolkit.git
synced 2024-11-28 20:26:33 +03:00
24 lines
719 B
TypeScript
24 lines
719 B
TypeScript
import { bench, describe } from 'vitest';
|
|
import { indexOf as indexOfToolkitCompat } from 'es-toolkit/compat';
|
|
import { indexOf as indexOfLodash } from 'lodash';
|
|
|
|
describe('indexOf', () => {
|
|
const array = [1, 2, 3, 4, NaN, '1', '2', '3', '4', 'NaN'];
|
|
|
|
bench('es-toolkit/compat/indexOf', () => {
|
|
indexOfToolkitCompat(array, 3);
|
|
indexOfToolkitCompat(array, NaN);
|
|
indexOfToolkitCompat(array, '1');
|
|
indexOfToolkitCompat(array, 'NaN', -5);
|
|
indexOfToolkitCompat(array, 'NaN', -100);
|
|
});
|
|
|
|
bench('lodash/indexOf', () => {
|
|
indexOfLodash(array, 3);
|
|
indexOfLodash(array, NaN);
|
|
indexOfLodash(array, '1');
|
|
indexOfLodash(array, 'NaN', -5);
|
|
indexOfLodash(array, 'NaN', -100);
|
|
});
|
|
});
|