feat(tool): case converter

This commit is contained in:
Corentin Thomasset 2022-04-16 00:03:31 +02:00
parent c1e76695e4
commit 7a7372df19
No known key found for this signature in database
GPG key ID: DBD997E935996158
5 changed files with 384 additions and 5 deletions

View file

@ -0,0 +1,12 @@
import { LetterCaseToggle } from '@vicons/tabler';
import type { ITool } from './../Tool';
export const tool: ITool = {
name: 'Case converter',
path: '/case-converter',
description: 'Change the case of a string and chose between different formats',
keywords: ['case', 'converter', 'camelCase', 'capitalCase', 'constantCase', 'dotCase', 'headerCase', 'noCase', 'paramCase', 'pascalCase', 'pathCase', 'sentenceCase', 'snakeCase', ],
component: () => import('./case-converter.vue'),
icon: LetterCaseToggle,
};