diff options
Diffstat (limited to 'src/tools/string-obfuscator/index.ts')
-rw-r--r-- | src/tools/string-obfuscator/index.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/tools/string-obfuscator/index.ts b/src/tools/string-obfuscator/index.ts new file mode 100644 index 0000000..d5b4531 --- /dev/null +++ b/src/tools/string-obfuscator/index.ts @@ -0,0 +1,12 @@ +import { EyeOff } from '@vicons/tabler'; +import { defineTool } from '../tool'; + +export const tool = defineTool({ + name: 'String obfuscator', + path: '/string-obfuscator', + description: 'Obfuscate a string (like a secret, an IBAN, or a token) to make it shareable and identifiable without revealing its content.', + keywords: ['string', 'obfuscator', 'secret', 'token', 'hide', 'obscure', 'mask', 'masking'], + component: () => import('./string-obfuscator.vue'), + icon: EyeOff, + createdAt: new Date('2023-08-16'), +}); |