2022-04-04 21:46:35 +02:00
import { Fingerprint } from '@vicons/tabler' ;
2022-06-01 23:52:21 +02:00
import { defineTool } from '../tool' ;
2022-04-04 21:46:35 +02:00
2022-06-01 23:52:21 +02:00
export const tool = defineTool ( {
2023-11-13 22:38:01 +01:00
name : 'UUIDs generator' ,
2022-04-04 21:46:35 +02:00
path : '/uuid-generator' ,
description :
2023-09-04 13:51:04 +01:00
'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!).' ,
2023-11-13 22:38:01 +01:00
keywords : [ 'uuid' , 'v4' , 'random' , 'id' , 'alphanumeric' , 'identity' , 'token' , 'string' , 'identifier' , 'unique' , 'v1' , 'v3' , 'v5' , 'nil' ] ,
2022-04-04 21:46:35 +02:00
component : ( ) = > import ( './uuid-generator.vue' ) ,
icon : Fingerprint ,
2022-06-01 23:52:21 +02:00
} ) ;