it-tools/src/tools/integer-base-converter/index.ts

12 lines
488 B
TypeScript
Raw Normal View History

2022-04-12 14:27:52 +02:00
import { ArrowsLeftRight } from '@vicons/tabler';
import type { ITool } from '../Tool';
export const tool: ITool = {
name: 'Integer base converter',
path: '/base-converter',
description: 'Convert numver between different bases (decimal, hexadecimal, binary, octale, base64, ...)',
keywords: ['integer', 'number', 'base', 'convertion', 'decimal', 'hexadecimal', 'binary', 'octale', 'base64'],
component: () => import('./integer-base-converter.vue'),
icon: ArrowsLeftRight,
};