aboutsummaryrefslogtreecommitdiff
path: root/src/tools/text-statistics/index.ts
diff options
context:
space:
mode:
authorGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2022-04-14 01:06:06 +0200
committerGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2022-04-14 01:06:06 +0200
commit0a7c3252e36a4769eedaaec4524b4ee2ae2b19c7 (patch)
treeade373289246260437a5de428bee32f000f49969 /src/tools/text-statistics/index.ts
parent2f49631ff7cc2416343c35c2ac2afdfdcfb1d609 (diff)
downloadit-tools-0a7c3252e36a4769eedaaec4524b4ee2ae2b19c7.tar.gz
it-tools-0a7c3252e36a4769eedaaec4524b4ee2ae2b19c7.tar.zst
it-tools-0a7c3252e36a4769eedaaec4524b4ee2ae2b19c7.zip
feat(tool): text statistics
Diffstat (limited to 'src/tools/text-statistics/index.ts')
-rw-r--r--src/tools/text-statistics/index.ts11
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,
+};