aboutsummaryrefslogtreecommitdiff
path: root/src/tools/iban-validator-and-parser/index.ts
blob: b0cae50d5189494ea05ebc1f8b963de6fefa96db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { defineTool } from '../tool';
import Bank from '~icons/mdi/bank';

export const tool = defineTool({
  name: 'IBAN validator and parser',
  path: '/iban-validator-and-parser',
  description: 'Validate and parse IBAN numbers. Check if IBAN is valid and get the country, BBAN, if it is a QR-IBAN and the IBAN friendly format.',
  keywords: ['iban', 'validator', 'and', 'parser', 'bic', 'bank'],
  component: () => import('./iban-validator-and-parser.vue'),
  icon: Bank,
  createdAt: new Date('2023-08-26'),
});