mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 13:29:13 -04:00
26 lines
633 B
TypeScript
26 lines
633 B
TypeScript
![]() |
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'),
|
||
|
});
|