mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 05:47:10 -04:00
13 lines
525 B
TypeScript
13 lines
525 B
TypeScript
![]() |
import { SortDescendingNumbers } from '@vicons/tabler';
|
||
|
import { defineTool } from '../tool';
|
||
|
|
||
|
export const tool = defineTool({
|
||
|
name: 'ULID generator',
|
||
|
path: '/ulid-generator',
|
||
|
description: 'Generate random Universally Unique Lexicographically Sortable Identifier (ULID).',
|
||
|
keywords: ['ulid', 'generator', 'random', 'id', 'alphanumeric', 'identity', 'token', 'string', 'identifier', 'unique'],
|
||
|
component: () => import('./ulid-generator.vue'),
|
||
|
icon: SortDescendingNumbers,
|
||
|
createdAt: new Date('2023-09-11'),
|
||
|
});
|