mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 13:29:13 -04:00
feat(new tool): Luhn Checker
Check kuhn identifiers
This commit is contained in:
parent
318fb6efb9
commit
98c50f0f2a
6 changed files with 84 additions and 15 deletions
12
src/tools/luhn-validator/index.ts
Normal file
12
src/tools/luhn-validator/index.ts
Normal 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'),
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue