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'),
 | |
| });
 |