diff options
author | 2023-08-16 23:43:45 +0200 | |
---|---|---|
committer | 2023-08-16 21:43:45 +0000 | |
commit | c58d6e34232e199406b39cb258e8106dc6b2f9c1 (patch) | |
tree | 3a21bcc5de88be2e260a852bf7d99acdd7b42da1 /src/tools/string-obfuscator/index.ts | |
parent | f235dcd6c1aeaf92ad2e1e7125aac76367e85345 (diff) | |
download | it-tools-c58d6e34232e199406b39cb258e8106dc6b2f9c1.tar.gz it-tools-c58d6e34232e199406b39cb258e8106dc6b2f9c1.tar.zst it-tools-c58d6e34232e199406b39cb258e8106dc6b2f9c1.zip |
feat(new tool): string obfuscator (#575)
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'), +}); |