mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 13:57:10 -04:00
12 lines
455 B
TypeScript
12 lines
455 B
TypeScript
import { Unlink } from '@vicons/tabler';
|
|
import type { ITool } from './../Tool';
|
|
|
|
export const tool: ITool = {
|
|
name: 'Url parser',
|
|
path: '/url-parser',
|
|
description:
|
|
'Parse an url string to get all the different parts (protocol, origin, params, port, username-password, ...)',
|
|
keywords: ['url', 'parser', 'protocol', 'origin', 'params', 'port', 'username', 'password', 'href'],
|
|
component: () => import('./url-parser.vue'),
|
|
icon: Unlink,
|
|
};
|