aboutsummaryrefslogtreecommitdiff
path: root/src/tools/text-to-binary/index.ts
diff options
context:
space:
mode:
authorGravatar Corentin THOMASSET <corentin.thomasset74@gmail.com> 2023-10-16 00:57:47 +0200
committerGravatar GitHub <noreply@github.com> 2023-10-15 22:57:47 +0000
commitb2ad4f7a27d1feaf0ef58042689124fc51c54d1e (patch)
tree904208593bd17b20b026f996a2a1b65e6b607f8c /src/tools/text-to-binary/index.ts
parentb408df82c1d8a0123e552048421b37afcf5189c6 (diff)
downloadit-tools-b2ad4f7a27d1feaf0ef58042689124fc51c54d1e.tar.gz
it-tools-b2ad4f7a27d1feaf0ef58042689124fc51c54d1e.tar.zst
it-tools-b2ad4f7a27d1feaf0ef58042689124fc51c54d1e.zip
feat(new tool): text to ascii converter (#669)
Diffstat (limited to 'src/tools/text-to-binary/index.ts')
-rw-r--r--src/tools/text-to-binary/index.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/tools/text-to-binary/index.ts b/src/tools/text-to-binary/index.ts
new file mode 100644
index 0000000..40ac93d
--- /dev/null
+++ b/src/tools/text-to-binary/index.ts
@@ -0,0 +1,12 @@
+import { Binary } from '@vicons/tabler';
+import { defineTool } from '../tool';
+
+export const tool = defineTool({
+ name: 'Text to ASCII binary',
+ path: '/text-to-binary',
+ description: 'Convert text to its ASCII binary representation and vice versa.',
+ keywords: ['text', 'to', 'binary', 'converter', 'encode', 'decode', 'ascii'],
+ component: () => import('./text-to-binary.vue'),
+ icon: Binary,
+ createdAt: new Date('2023-10-15'),
+});