UNPKG

is-phone-number

Version:
11 lines (8 loc) 227 B
'use strict'; var re = /^(\+\d{1,2}\s)?\(?\d{3}\)?[\s.-]\d{3}[\s.-]\d{4}$/; module.exports = function (phone) { if (typeof phone !== 'string') { throw new TypeError('Expected a string'); } return re.test(phone); };