mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-07 14:57:12 -04:00
14 lines
748 B
TypeScript
14 lines
748 B
TypeScript
import { DeviceDesktop } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
|
|
export const tool = defineTool({
|
|
name: 'HDD calculator',
|
|
path: '/hdd-calculator',
|
|
description: 'Storage device manufacturers report capacities in decimal form (like GB), while operating systems and other software uses binary form (GiB), although still incorrectly using the decimal unit (GiB). This tool converts decimal form capacity into various binary forms.',
|
|
keywords: ['hdd', 'calculator', 'size', 'conversion', 'binary', 'decimal',
|
|
'gb', 'mb', 'tb',
|
|
'gigabyte', 'gibibyte', 'megabyte', 'mebibyte', 'terabyte', 'tebibyte'],
|
|
component: () => import('./hdd-calculator.vue'),
|
|
icon: DeviceDesktop,
|
|
createdAt: new Date('2024-04-07'),
|
|
});
|