UNPKG

libphonenumber-js

Version:

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

6 lines (4 loc) 130 B
const CALLING_CODE_REG_EXP = /^\d+$/ export default function isCallingCode(string) { return CALLING_CODE_REG_EXP.test(string) }