UNPKG

bd-phone-number-validator

Version:

bd-phone-number-validator is a npm package designed to validate phone number of bangladesh. It can validates any Bangladeshi cell phone numbers and show all the information about the phone numbers operator

12 lines (8 loc) 273 B
// validate phone number const validate = (phoneNumber) => { const expression = /(^([+]{1}[8]{2}|88)?(01){1}[3-9]{1}\d{8})$/; const isMatch = phoneNumber.match(expression); if (isMatch == null) return false; return true; }; module.exports = validate;