feat(tool): text statistics

This commit is contained in:
Corentin Thomasset
2022-04-14 01:06:06 +02:00
parent 2f49631ff7
commit 0a7c3252e3
7 changed files with 67 additions and 1 deletions

View File

@@ -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,
};