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