Files
omni-tools/src/pages/tools/list/truncate/meta.ts

19 lines
716 B
TypeScript
Raw Normal View History

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('list', {
name: 'Truncate',
path: 'truncate',
2025-07-12 23:02:35 -07:00
icon: 'material-symbols-light:content-cut',
2025-03-10 00:56:05 +00:00
description:
2025-07-12 23:02:35 -07:00
"World's simplest browser-based utility for truncating lists. Input your list and specify the maximum number of items to keep. Perfect for data processing, list management, or limiting content length.",
shortDescription: 'Truncate list to specified number of items',
keywords: ['truncate'],
2025-07-12 23:02:35 -07:00
component: lazy(() => import('./index')),
i18n: {
2025-07-13 11:25:05 +01:00
name: 'list:truncate.title',
description: 'list:truncate.description',
shortDescription: 'list:truncate.shortDescription'
2025-07-12 23:02:35 -07:00
}
2024-07-09 23:38:29 +01:00
});