Giter VIP home page Giter VIP logo

Comments (3)

adam0x01 avatar adam0x01 commented on May 27, 2024

If you provide the 2nd parameter (country), no need to add the + sign for the phone number.

var phone = require('phone');

phone("+33643123123", "FRA"); // [ '+33643123123', 'FRA' ]
phone("33643123123", "FRA");  // [ '+33643123123', 'FRA' ]
phone("643123123", "FR");     // [ '+33643123123', 'FRA' ]

from phone.

HiuKwok avatar HiuKwok commented on May 27, 2024

Hi @adamliuxy ,
Does it mean once the plus sign is provided then the program itself would look for a country code prefix?
Let say by typing a HKG mobile ("+852 9122 5454", "HKG") would consider to be valid cuz plus sign is provided then it look for (852) and decide it's HKG cell phone number. But on the other case when user type ("+ 9122 5454", "HKG") it would consider to be invalid cuz country number (852) prefix is not provided?

And base on this should fill the number prefix on output if the country short form is provided?
Old case: ("+ 9122 5454", "HKG") -> Invalid
New case: ("+ 9122 5454", "HKG") -> Oh prefix (852) is absent but "HKG" is on -> Return ['+85291225454', 'HKG'] for output?

from phone.

Bossa573 avatar Bossa573 commented on May 27, 2024

@HiuKwok If a phone number is prefixed with a plus sign, it should be considered as there should be a country code provided i.e. for +91225454, the library should try to look up the country code 9, 91 and so on, and eventually no result could be found.

The country iso3 parameter provides extra information for formatting the phone number, but if the library adds the country code prefix according to the country iso3, ignoring the + sign, it is distorting the meaning of "the digits come after the plus sign", which supposedly should be followed by country code.

And for @hikkyu cases, please do not add the + sign before the phone number if you are not sure the digit followed by the + sign is the country code.

Thanks for the information and contribution, please reopen the ticket if needed

from phone.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.