New Tool: Data Transfer Rate Converter New Tool: Data Storage Units Converter (with MB, MiB and Mb) Fix #539 #785 #1160 #848 Data Storage Units Converter inspired by #948 by @utf26
		
			
				
	
	
		
			13 lines
		
	
	
		
			458 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			458 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { TransferIn } from '@vicons/tabler';
 | |
| import { defineTool } from '../tool';
 | |
| 
 | |
| export const tool = defineTool({
 | |
|   name: 'Data Transfer Rate Calculator',
 | |
|   path: '/data-transfer-rate-converter',
 | |
|   description: 'Compute Data Transfer times, rates and amount of data',
 | |
|   keywords: ['data', 'transfer', 'rate', 'convert', 'time'],
 | |
|   component: () => import('./data-transfer-rate-converter.vue'),
 | |
|   icon: TransferIn,
 | |
|   createdAt: new Date('2024-08-15'),
 | |
| });
 |