Software: Apache. PHP/8.1.30 uname -a: Linux server1.tuhinhossain.com 5.15.0-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 UTC uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root) Safe-mode: OFF (not secure) /home/picotech/domains/wa.picotech.app/public_html/node_modules/libphonenumber-js/source/helpers/ drwxr-xr-x | |
| Viewing file: Select action/file-type: import Metadata from '../metadata.js'
import getNumberType from './getNumberType.js'
export default function getCountryByNationalNumber(nationalPhoneNumber, {
countries,
defaultCountry,
metadata
}) {
// Re-create `metadata` because it will be selecting a `country`.
metadata = new Metadata(metadata)
const matchingCountries = []
for (const country of countries) {
metadata.country(country)
// "Leading digits" patterns are only defined for about 20% of all countries.
// By definition, matching "leading digits" is a sufficient but not a necessary
// condition for a phone number to belong to a country.
// The point of "leading digits" check is that it's the fastest one to get a match.
// https://gitlab.com/catamphetamine/libphonenumber-js/blob/master/METADATA.md#leading_digits
// I'd suppose that "leading digits" patterns are mutually exclusive for different countries
// because of the intended use of that feature.
if (metadata.leadingDigits()) {
if (nationalPhoneNumber &&
nationalPhoneNumber.search(metadata.leadingDigits()) === 0) {
return country
}
}
// Else perform full validation with all of those
// fixed-line/mobile/etc regular expressions.
else if (getNumberType({ phone: nationalPhoneNumber, country }, undefined, metadata.metadata)) {
// If the `defaultCountry` is among the `matchingCountries` then return it.
if (defaultCountry) {
if (country === defaultCountry) {
return country
}
matchingCountries.push(country)
} else {
return country
}
}
}
// Return the first ("main") one of the `matchingCountries`.
if (matchingCountries.length > 0) {
return matchingCountries[0]
}
} |
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0032 ]-- |