diff options
author | 2022-04-19 00:12:44 +0200 | |
---|---|---|
committer | 2022-04-19 00:12:44 +0200 | |
commit | 2b38d6f81e34845f896b858513e35209cba29f98 (patch) | |
tree | 68c335a7066d6756134b805d7898a8ac59da9d25 /src/tools/url-parser/index.ts | |
parent | ed9046d3e1f5a7dc01c722ed139a2ae477a2d48f (diff) | |
download | it-tools-2b38d6f81e34845f896b858513e35209cba29f98.tar.gz it-tools-2b38d6f81e34845f896b858513e35209cba29f98.tar.zst it-tools-2b38d6f81e34845f896b858513e35209cba29f98.zip |
feat(new-tool): url parser
Diffstat (limited to 'src/tools/url-parser/index.ts')
-rw-r--r-- | src/tools/url-parser/index.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/tools/url-parser/index.ts b/src/tools/url-parser/index.ts new file mode 100644 index 0000000..b46de14 --- /dev/null +++ b/src/tools/url-parser/index.ts @@ -0,0 +1,11 @@ +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, +}; |