2023-08-16 23:43:45 +02:00
|
|
|
import { EyeOff } from '@vicons/tabler';
|
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2023-08-16 23:43:45 +02:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.string-obfuscator.title'),
|
2023-08-16 23:43:45 +02:00
|
|
|
path: '/string-obfuscator',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.string-obfuscator.description'),
|
2023-08-16 23:43:45 +02:00
|
|
|
keywords: ['string', 'obfuscator', 'secret', 'token', 'hide', 'obscure', 'mask', 'masking'],
|
|
|
|
component: () => import('./string-obfuscator.vue'),
|
|
|
|
icon: EyeOff,
|
|
|
|
createdAt: new Date('2023-08-16'),
|
|
|
|
});
|