it-tools/src/tools/url-parser/index.ts

13 lines
458 B
TypeScript
Raw Normal View History

2022-04-19 00:12:44 +02:00
import { Unlink } from '@vicons/tabler';
import { defineTool } from '../tool';
2022-04-19 00:12:44 +02:00
export const tool = defineTool({
2022-04-19 00:12:44 +02:00
name: 'Url parser',
path: '/url-parser',
2022-05-09 15:25:48 +02:00
description:
'Parse an url string to get all the different parts (protocol, origin, params, port, username-password, ...)',
2022-04-19 00:12:44 +02:00
keywords: ['url', 'parser', 'protocol', 'origin', 'params', 'port', 'username', 'password', 'href'],
component: () => import('./url-parser.vue'),
icon: Unlink,
});