aboutsummaryrefslogtreecommitdiff
path: root/src/tools/phone-parser-and-formatter/index.ts
blob: 5b19ae61a1002f68c6e74be8562ea7eaa02d3014 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { Phone } from '@vicons/tabler';
import { defineTool } from '../tool';

export const tool = defineTool({
  name: 'Phone parser and formatter',
  path: '/phone-parser-and-formatter',
  description:
    'Parse, validate and format phone numbers. Get information about the phone number, like the country code, type, etc.',
  keywords: [
    'phone',
    'parser',
    'formatter',
    'validate',
    'format',
    'number',
    'telephone',
    'mobile',
    'cell',
    'international',
    'national',
  ],
  component: () => import('./phone-parser-and-formatter.vue'),
  icon: Phone,
  createdAt: new Date('2023-05-01'),
});