diff options
author | 2022-04-14 01:06:06 +0200 | |
---|---|---|
committer | 2022-04-14 01:06:06 +0200 | |
commit | 0a7c3252e36a4769eedaaec4524b4ee2ae2b19c7 (patch) | |
tree | ade373289246260437a5de428bee32f000f49969 /src/tools/text-statistics/index.ts | |
parent | 2f49631ff7cc2416343c35c2ac2afdfdcfb1d609 (diff) | |
download | it-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.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, +}; |