mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 08:16:16 -04:00
13 lines
445 B
TypeScript
13 lines
445 B
TypeScript
![]() |
import { Mail } from '@vicons/tabler';
|
||
|
import { defineTool } from '../tool';
|
||
|
|
||
|
export const tool = defineTool({
|
||
|
name: 'Email normalizer',
|
||
|
path: '/email-normalizer',
|
||
|
description: 'Normalize email addresses to a standard format for easier comparison. Useful for deduplication and data cleaning.',
|
||
|
keywords: ['email', 'normalizer'],
|
||
|
component: () => import('./email-normalizer.vue'),
|
||
|
icon: Mail,
|
||
|
createdAt: new Date('2024-08-15'),
|
||
|
});
|