aboutsummaryrefslogtreecommitdiff
path: root/src/tools/slugify-string/index.ts
diff options
context:
space:
mode:
authorGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2023-02-10 22:06:32 +0100
committerGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2023-02-10 22:06:32 +0100
commit6fe4b5ac608370547ec8be14afca36b28536c824 (patch)
tree5a46fd5fc6eec5d54251b80f8a281a8ccb412f93 /src/tools/slugify-string/index.ts
parent1a3f0a135d572501cc6aec50f39e09205aa616ca (diff)
downloadit-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.ts11
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,
+});