aboutsummaryrefslogtreecommitdiff
path: root/src/tools/base64-string-converter/index.ts
blob: 0dd9bee2e83cd9c34ffcd1a1affd058a33414352 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { FileDigit } from '@vicons/tabler';
import { defineTool } from '../tool';

export const tool = defineTool({
  name: 'Base64 string encoder/decoder',
  path: '/base64-string-converter',
  description: 'Simply encode and decode string into a their base64 representation.',
  keywords: ['base64', 'converter', 'conversion', 'web', 'data', 'format', 'atob', 'btoa'],
  component: () => import('./base64-string-converter.vue'),
  icon: FileDigit,
  redirectFrom: ['/file-to-base64', '/base64-converter'],
});