diff options
author | 2023-02-10 22:06:32 +0100 | |
---|---|---|
committer | 2023-02-10 22:06:32 +0100 | |
commit | 6fe4b5ac608370547ec8be14afca36b28536c824 (patch) | |
tree | 5a46fd5fc6eec5d54251b80f8a281a8ccb412f93 /src/tools/slugify-string/index.ts | |
parent | 1a3f0a135d572501cc6aec50f39e09205aa616ca (diff) | |
download | it-tools-6fe4b5ac608370547ec8be14afca36b28536c824.tar.gz it-tools-6fe4b5ac608370547ec8be14afca36b28536c824.tar.zst it-tools-6fe4b5ac608370547ec8be14afca36b28536c824.zip |
feat(new-tool): slugify string
Diffstat (limited to 'src/tools/slugify-string/index.ts')
-rw-r--r-- | src/tools/slugify-string/index.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/tools/slugify-string/index.ts b/src/tools/slugify-string/index.ts new file mode 100644 index 0000000..8dabcdb --- /dev/null +++ b/src/tools/slugify-string/index.ts @@ -0,0 +1,11 @@ +import { AbcRound } from '@vicons/material'; +import { defineTool } from '../tool'; + +export const tool = defineTool({ + name: 'Slugify string', + path: '/slugify-string', + description: 'Make a string url, filename and id safe.', + keywords: ['slugify', 'string', 'escape', 'emoji', 'special', 'character', 'space', 'trim'], + component: () => import('./slugify-string.vue'), + icon: AbcRound, +}); |