2022-04-14 01:06:06 +02:00
|
|
|
import { FileText } from '@vicons/tabler';
|
2022-06-01 23:52:21 +02:00
|
|
|
import { defineTool } from '../tool';
|
2022-04-14 01:06:06 +02:00
|
|
|
|
2022-06-01 23:52:21 +02:00
|
|
|
export const tool = defineTool({
|
2022-04-14 01:06:06 +02:00
|
|
|
name: 'Text statistics',
|
|
|
|
path: '/text-statistics',
|
2023-05-28 23:13:24 +02:00
|
|
|
description: 'Get information about a text, the amount of characters, the amount of words, it\'s size, ...',
|
2022-04-14 01:06:06 +02:00
|
|
|
keywords: ['text', 'statistics', 'length', 'characters', 'count', 'size', 'bytes'],
|
|
|
|
component: () => import('./text-statistics.vue'),
|
|
|
|
icon: FileText,
|
2022-04-16 10:10:21 +02:00
|
|
|
redirectFrom: ['/text-stats'],
|
2022-06-01 23:52:21 +02:00
|
|
|
});
|