feat(tool): uuid v4 generator

This commit is contained in:
Corentin Thomasset 2022-04-04 21:46:35 +02:00
parent 40e9af06cf
commit 3ae61147a9
No known key found for this signature in database
GPG key ID: DBD997E935996158
5 changed files with 83 additions and 4 deletions

View file

@ -0,0 +1,12 @@
import { Fingerprint } from '@vicons/tabler';
import type { ITool } from '../Tool';
export const tool: ITool = {
name: 'UUIDs v4 generator',
path: '/uuid-generator',
description:
'A universally unique identifier (UUID) is a 128-bit number used to identify information in computer systems. The number of possible UUIDs is 16^32, which is 2^128 or about 3.4x10^38 (which is a lot !).',
keywords: ['uuid', 'v4', 'random', 'id', 'alphanumeric', 'identity', 'token', 'string', 'identifier', 'unique'],
component: () => import('./uuid-generator.vue'),
icon: Fingerprint,
};