check.js 185 B

123456789101112
  1. function isValidPhone(str) {
  2. var myreg = /^[1][3,4,5,7,8][0-9]{9}$/;
  3. if (!myreg.test(str)) {
  4. return false;
  5. } else {
  6. return true;
  7. }
  8. }
  9. module.exports = {
  10. isValidPhone
  11. }