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

15 lines
521 B
TypeScript
Raw Normal View History

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
// import image from '@assets/text.png';
export const tool = defineTool('list', {
name: 'Unwrap',
path: 'unwrap',
2025-02-25 06:17:10 +00:00
icon: 'mdi:unwrap',
2025-03-10 00:56:05 +00:00
description:
'A tool to remove characters from the beginning and end of each item in a list. Perfect for cleaning up formatted data or removing unwanted wrappers.',
shortDescription: 'Remove characters around list items.',
keywords: ['unwrap'],
component: lazy(() => import('./index'))
2024-07-09 23:38:29 +01:00
});