mirror of
https://github.com/toss/es-toolkit.git
synced 2024-11-28 20:26:33 +03:00
14 lines
325 B
TypeScript
14 lines
325 B
TypeScript
import { bench, describe } from 'vitest';
|
|
import { drop as dropToolkit } from 'es-toolkit';
|
|
import { drop as dropLodash } from 'lodash';
|
|
|
|
describe('drop', () => {
|
|
bench('es-toolkit/drop', () => {
|
|
dropToolkit([1, 2, 3, 4, 5, 6], 3);
|
|
});
|
|
|
|
bench('lodash/drop', () => {
|
|
dropLodash([1, 2, 3, 4, 5, 6], 3);
|
|
});
|
|
});
|