aboutsummaryrefslogtreecommitdiff
path: root/src/tools/integer-base-converter/index.ts
blob: 16ae6232affe7d31006c7359851e7364e376dae4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import { ArrowsLeftRight } from '@vicons/tabler';
import type { ITool } from '../Tool';

export const tool: ITool = {
  name: 'Integer base converter',
  path: '/base-converter',
  description: 'Convert number between different bases (decimal, hexadecimal, binary, octal, base64, ...)',
  keywords: ['integer', 'number', 'base', 'conversion', 'decimal', 'hexadecimal', 'binary', 'octal', 'base64'],
  component: () => import('./integer-base-converter.vue'),
  icon: ArrowsLeftRight,
};