Files
omni-tools/src/pages/tools/string/split/meta.ts

19 lines
746 B
TypeScript
Raw Normal View History

2024-06-23 20:49:05 +01:00
import { defineTool } from '@tools/defineTool';
2024-06-22 22:06:16 +01:00
import { lazy } from 'react';
export const tool = defineTool('string', {
2025-07-12 23:02:35 -07:00
name: 'Split',
2024-06-22 22:06:16 +01:00
path: 'split',
2025-07-12 23:02:35 -07:00
icon: 'material-symbols-light:call-split',
2024-06-22 22:06:16 +01:00
description:
2025-07-12 23:02:35 -07:00
"World's simplest browser-based utility for splitting text. Input your text and specify a separator to split it into multiple parts. Perfect for data processing, text manipulation, or extracting specific content from larger text blocks.",
shortDescription: 'Split text into multiple parts using a separator',
keywords: ['split'],
component: lazy(() => import('./index')),
i18n: {
name: 'string.split.name',
description: 'string.split.description',
shortDescription: 'string.split.shortDescription'
}
2024-06-22 22:06:16 +01:00
});