UNPKG

react-native-international-phone-number

Version:
10 lines (7 loc) 228 B
import {phone} from 'phone'; export default function isValidPhoneNumber(phoneNumber, country) { const isValid = phone(`${country?.callingCode} ${phoneNumber}`, { country: country?.cca2, }).isValid; return isValid; }