blob: 67f1995c94ff5c3ed2a9df43c3bb22da5401a7d2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { EyeOff } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.string-obfuscator.title'),
path: '/string-obfuscator',
description: translate('tools.string-obfuscator.description'),
keywords: ['string', 'obfuscator', 'secret', 'token', 'hide', 'obscure', 'mask', 'masking'],
component: () => import('./string-obfuscator.vue'),
icon: EyeOff,
createdAt: new Date('2023-08-16'),
});
|