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

14 lines
629 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-03-10 00:56:05 +00:00
icon: 'mdi:format-horizontal-align-right',
description:
"World's simplest browser-based utility for truncating lists. Quickly limit the number of items in your list by specifying a maximum length. Perfect for sampling data, creating previews, or managing large lists. Supports custom separators and various truncation options.",
2025-03-08 07:38:45 +00:00
shortDescription: 'Limit the number of items in a list',
keywords: ['truncate'],
component: lazy(() => import('./index'))
2024-07-09 23:38:29 +01:00
});