UNPKG

phone-number-lookup

Version:

phone-number-lookup is TS written library that provides information about a phone number, such as: Country, Prefix, Type (Mobile/Fixed/VoIP), Carrier etc. Every data is processed locally, so no internet connection is needed. Made primarily for personal-us

12 lines (11 loc) 337 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.convertToE164 = void 0; /* * https://en.wikipedia.org/wiki/E.164 * Tries to convert the provided number to E.164 format */ function convertToE164(number) { return '+'.concat(number.replace(/\D/g, '')); } exports.convertToE164 = convertToE164;