phone-country-lookup-ts
v1.0.0
Published
Server-side tool for detecting a phone number's origin country and verifying the correct digit count. It is the TypeScript version of phone-country-lookup
Downloads
10
Maintainers
Readme
phone-country-lookup
phone-country-lookup is a server-side tool that helps you detect the country of origin of a phone number and verify if it has the correct digit count.
Installation
To install PhoneCountryLookup, use npm:
npm install phone-country-lookup-ts
Usage
const { checkPhoneNumber } = require('./Main');
// Check a phone number
const phoneNumber = "+11234567890";
const result = checkPhoneNumber(phoneNumber);
if (result) {
console.log(`Country: ${result.country}`);
console.log(`Identifier: ${result.identifier}`);
console.log(`Is Correct Number: ${result.isCorrectNumber}`);
} else {
console.log("No match found.");
}
License
This project is licensed under the MIT License. See the LICENSE file for details.