2.0.0 • Published 6 years ago

@0devco/bd-phone-validator v2.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

+880 bd-phone-validator

Bangladesh phone number validation

install

# npm
npm install @0devco/bd-phone-validator
# yarn
yarn add @0devco/bd-phone-validator

use

let bdPhone = require('@0devco/bd-phone-validator')
/* import */
import bdPhone from '@0devco/bd-phone-validator'

let check = bdPhone('01751211255')
console.log(check)

11 digit phn

  • 01751200200 , +8801751200200
bdPhone('01751200200')

less 11 digit

  • 0175120020 , 017 512 00 20
bdPhone('0175120020')

exceed (digit > 11)

  • input => 013512002002 , +88013512002002, +880 (135) 120-02002

  • output suggest => +8801351200200

bdPhone('013512002002')

invalid operator

  • 012512002002
bdPhone('012512002002')

demo