mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 05:19:12 -04:00
12 lines
429 B
TypeScript
12 lines
429 B
TypeScript
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'),
|
|
});
|