feat(new tool): Luhn Checker

Check kuhn identifiers
This commit is contained in:
sharevb 2024-09-28 11:27:43 +02:00 committed by ShareVB
parent 318fb6efb9
commit 98c50f0f2a
6 changed files with 84 additions and 15 deletions

View file

@ -0,0 +1,12 @@
import { Check } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Luhn Validator',
path: '/luhn-validator',
description: 'Check and generate key for identifier validated by a Luhn checknum',
keywords: ['luhn', 'credit-card', 'imei', 'identifier', 'validator'],
component: () => import('./luhn-validator.vue'),
icon: Check,
createdAt: new Date('2024-08-15'),
});