aboutsummaryrefslogtreecommitdiff
path: root/src/tools/url-parser/index.ts
blob: d1c8dfe8d37ad0dc9df697650485863170ce307c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { Unlink } from '@vicons/tabler';
import { defineTool } from '../tool';

export const tool = defineTool({
  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,
});