mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 13:29:13 -04:00
feat(new tool): phone parser and normalizer
This commit is contained in:
parent
3f6c8f0edd
commit
ce3150c65d
10 changed files with 357 additions and 140 deletions
25
src/tools/phone-parser-and-formatter/index.ts
Normal file
25
src/tools/phone-parser-and-formatter/index.ts
Normal file
|
@ -0,0 +1,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'),
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue