mirror of
https://github.com/toss/es-toolkit.git
synced 2024-11-28 20:26:33 +03:00
14 lines
313 B
TypeScript
14 lines
313 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/take', () => {
|
|
takeToolkit([1, 2, 3, 4], 2);
|
|
});
|
|
|
|
bench('lodash/take', () => {
|
|
takeLodash([1, 2, 3, 4], 2);
|
|
});
|
|
});
|