UNPKG

151 BJavaScriptView Raw
1const regex = require('./regex');
2
3const phone = () => regex(/^(\+\d{1,2}\s)?\(?\d{3}\)?[\s.-]\d{3}[\s.-]\d{4}$/iu, 'phone');
4
5module.exports = phone;