mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-19 05:59:34 +02:00
add base64 encoding/decoding
This commit is contained in:
13
src/pages/tools/string/base64/meta.ts
Normal file
13
src/pages/tools/string/base64/meta.ts
Normal 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'))
|
||||
});
|
Reference in New Issue
Block a user