2022-04-16 00:03:31 +02:00
|
|
|
import { LetterCaseToggle } from '@vicons/tabler';
|
2022-05-25 23:20:51 +02:00
|
|
|
import type { ITool } from '../tool';
|
2022-04-16 00:03:31 +02:00
|
|
|
|
|
|
|
export const tool: ITool = {
|
|
|
|
name: 'Case converter',
|
|
|
|
path: '/case-converter',
|
|
|
|
description: 'Change the case of a string and chose between different formats',
|
2022-04-22 23:31:40 +02:00
|
|
|
keywords: [
|
|
|
|
'case',
|
|
|
|
'converter',
|
|
|
|
'camelCase',
|
|
|
|
'capitalCase',
|
|
|
|
'constantCase',
|
|
|
|
'dotCase',
|
|
|
|
'headerCase',
|
|
|
|
'noCase',
|
|
|
|
'paramCase',
|
|
|
|
'pascalCase',
|
|
|
|
'pathCase',
|
|
|
|
'sentenceCase',
|
|
|
|
'snakeCase',
|
|
|
|
],
|
2022-04-16 00:03:31 +02:00
|
|
|
component: () => import('./case-converter.vue'),
|
|
|
|
icon: LetterCaseToggle,
|
|
|
|
};
|