diff options
Diffstat (limited to 'src/tools/text-statistics/index.ts')
-rw-r--r-- | src/tools/text-statistics/index.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/tools/text-statistics/index.ts b/src/tools/text-statistics/index.ts new file mode 100644 index 0000000..6f9ad84 --- /dev/null +++ b/src/tools/text-statistics/index.ts @@ -0,0 +1,11 @@ +import { FileText } from '@vicons/tabler'; +import type { ITool } from './../Tool'; + +export const tool: ITool = { + name: 'Text statistics', + path: '/text-statistics', + description: "Get information about a text, the amount of characters, the amount of words, it's size, ...", + keywords: ['text', 'statistics', 'length', 'characters', 'count', 'size', 'bytes'], + component: () => import('./text-statistics.vue'), + icon: FileText, +}; |