mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
19 lines
738 B
TypeScript
19 lines
738 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('string', {
|
|
name: 'Join',
|
|
path: 'join',
|
|
icon: 'material-symbols-light:join',
|
|
description:
|
|
"World's simplest browser-based utility for joining text elements. Input your text elements and specify a separator to combine them into a single string. Perfect for data processing, text manipulation, or creating formatted output from lists.",
|
|
shortDescription: 'Join text elements with a specified separator',
|
|
keywords: ['join'],
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'string:join.title',
|
|
description: 'string:join.description',
|
|
shortDescription: 'string:join.shortDescription'
|
|
}
|
|
});
|