refactor(base64): split base64 text and file conversion in two tools + base64 to file

This commit is contained in:
Corentin Thomasset 2022-07-25 23:21:42 +02:00
parent a70a0f83a1
commit e6953d1b67
No known key found for this signature in database
GPG key ID: DBD997E935996158
8 changed files with 117 additions and 21 deletions

View file

@ -1,7 +1,8 @@
import { LockOpen } from '@vicons/tabler';
import type { ToolCategory } from './tool';
import { tool as base64Converter } from './base64-converter';
import { tool as base64FileConverter } from './base64-file-converter';
import { tool as base64StringConverter } from './base64-string-converter';
import { tool as basicAuthGenerator } from './basic-auth-generator';
import { tool as bcrypt } from './bcrypt';
import { tool as bip39 } from './bip39-generator';
@ -43,7 +44,8 @@ export const toolsByCategory: ToolCategory[] = [
dateTimeConverter,
baseConverter,
romanNumeralConverter,
base64Converter,
base64StringConverter,
base64FileConverter,
colorConverter,
caseConverter,
],