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

12 lines
452 B
TypeScript
Raw Normal View History

2022-04-19 00:12:44 +02:00
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 differents parts (protocol, origin, params, port, username-password, ...)',
keywords: ['url', 'parser', 'protocol', 'origin', 'params', 'port', 'username', 'password', 'href'],
component: () => import('./url-parser.vue'),
icon: Unlink,
};