mirror of
https://github.com/toss/es-toolkit.git
synced 2024-12-01 02:33:54 +03:00
cf65b2c601
* chore: add prettierrc * chore: apply format with prettier config * chore: eslint error fix
14 lines
303 B
TypeScript
14 lines
303 B
TypeScript
import { bench, describe } from 'vitest';
|
|
import { take as takeToolkit } from 'es-toolkit';
|
|
import { take as takeLodash } from 'lodash';
|
|
|
|
describe('take', () => {
|
|
bench('es-toolkit', () => {
|
|
takeToolkit([1, 2, 3, 4], 2);
|
|
});
|
|
|
|
bench('lodash', () => {
|
|
takeLodash([1, 2, 3, 4], 2);
|
|
});
|
|
});
|