UNPKG

libphonenumber-js

Version:

A simpler (and smaller) rewrite of Google Android's libphonenumber library in javascript

6 lines (4 loc) 135 B
const COUNTRY_CODE_REG_EXP = /^[A-Z]{2}$/ export default function isCountryCode(string) { return COUNTRY_CODE_REG_EXP.test(string) }