add base64 encoding/decoding

This commit is contained in:
Michael Klein
2025-06-03 21:40:58 +02:00
parent ffd5c8f326
commit 6988db600d
5 changed files with 176 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('string', {
name: 'Base64',
path: 'base64',
icon: 'mdi:code-tags',
description:
'A simple tool to encode or decode data using Base64, which is commonly used in web applications.',
shortDescription: 'Encode or decode data using Base64.',
keywords: ['base64'],
component: lazy(() => import('./index'))
});