mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 00:06:15 -04:00
12 lines
445 B
TypeScript
12 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'),
|
|
});
|