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

10 lines (7 loc) 270 B
const validate = require("./lib/validate"); const operator = require("./lib/operator"); // // test cases // console.log(operator(`01721792128`)); // console.log(validate(`01021792128`)); module.exports.validate = validate; module.exports.operator = operator;