mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-28 02:26:15 -04:00
feat(new-tool): simple benchmark calculator
This commit is contained in:
parent
004cb83719
commit
6e84ea4061
5 changed files with 225 additions and 1 deletions
11
src/tools/benchmark-builder/index.ts
Normal file
11
src/tools/benchmark-builder/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { SpeedFilled } from '@vicons/material';
|
||||
import { defineTool } from '../tool';
|
||||
|
||||
export const tool = defineTool({
|
||||
name: 'Benchmark builder',
|
||||
path: '/benchmark-builder',
|
||||
description: 'Easily compare execution time of tasks with this very simple online benchmark builder.',
|
||||
keywords: ['benchmark', 'builder', 'execution', 'duration', 'mean', 'variance'],
|
||||
component: () => import('./benchmark-builder.vue'),
|
||||
icon: SpeedFilled,
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue