You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
921 B
24 lines
921 B
3 years ago
|
import isViablePhoneNumber from './helpers/isViablePhoneNumber.js'
|
||
|
import parseNumber from './parse_.js'
|
||
|
import _isValidNumberForRegion from './isValidNumberForRegion_.js'
|
||
|
|
||
|
export default function isValidNumberForRegion(number, country, metadata) {
|
||
|
if (typeof number !== 'string') {
|
||
|
throw new TypeError('number must be a string')
|
||
|
}
|
||
|
if (typeof country !== 'string') {
|
||
|
throw new TypeError('country must be a string')
|
||
|
}
|
||
|
// `parse` extracts phone numbers from raw text,
|
||
|
// therefore it will cut off all "garbage" characters,
|
||
|
// while this `validate` function needs to verify
|
||
|
// that the phone number contains no "garbage"
|
||
|
// therefore the explicit `isViablePhoneNumber` check.
|
||
|
let input
|
||
|
if (isViablePhoneNumber(number)) {
|
||
|
input = parseNumber(number, { defaultCountry: country }, metadata)
|
||
|
} else {
|
||
|
input = {}
|
||
|
}
|
||
|
return _isValidNumberForRegion(input, country, undefined, metadata)
|
||
|
}
|