mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-17 17:56:38 +00:00
12 lines
491 B
TypeScript
12 lines
491 B
TypeScript
|
|
import { defineTool } from '../../../tools/defineTool';
|
|||
|
|
import { lazy } from 'react';
|
|||
|
|
|
|||
|
|
export const tool = defineTool('string', {
|
|||
|
|
path: 'split',
|
|||
|
|
name: 'Text splitter',
|
|||
|
|
description:
|
|||
|
|
"World's simplest browser-based utility for splitting text. Load your text in the input form on the left and you'll automatically get pieces of this text on the right. Powerful, free, and fast. Load text – get chunks.",
|
|||
|
|
keywords: ['text', 'split'],
|
|||
|
|
component: lazy(() => import('./index'))
|
|||
|
|
});
|