diff options
Diffstat (limited to 'src/tools/text-to-binary/index.ts')
-rw-r--r-- | src/tools/text-to-binary/index.ts | 12 |
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'), +}); |