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 { once as onceToolkit } from 'es-toolkit';
|
|
import { once as onceLodash } from 'lodash';
|
|
import { bench, describe } from 'vitest';
|
|
|
|
describe('once', () => {
|
|
bench('es-toolkit/once', () => {
|
|
onceToolkit(() => undefined);
|
|
});
|
|
|
|
bench('lodash/once', () => {
|
|
onceLodash(() => undefined);
|
|
});
|
|
});
|