19 lines
737 B
TypeScript
Raw Normal View History

2024-06-23 20:49:05 +01:00
import { defineTool } from '@tools/defineTool';
2024-06-23 00:47:12 -07:00
import { lazy } from 'react';
export const tool = defineTool('string', {
2025-07-12 23:02:35 -07:00
name: 'Join',
2024-06-23 00:47:12 -07:00
path: 'join',
2025-07-12 23:02:35 -07:00
icon: 'material-symbols-light:join',
2024-06-23 00:47:12 -07:00
description:
2025-07-12 23:02:35 -07:00
"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.name',
description: 'string.join.description',
shortDescription: 'string.join.shortDescription'
}
2024-06-23 00:47:12 -07:00
});