2022-04-19 00:12:44 +02:00
|
|
|
import { Unlink } from '@vicons/tabler';
|
2022-06-01 23:52:21 +02:00
|
|
|
import { defineTool } from '../tool';
|
2022-04-19 00:12:44 +02:00
|
|
|
|
2022-06-01 23:52:21 +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,
|
2022-06-01 23:52:21 +02:00
|
|
|
});
|