Giter VIP home page Giter VIP logo

Comments (8)

adam0x01 avatar adam0x01 commented on May 27, 2024

Hi, can you provide the sample code?

from phone.

tvld avatar tvld commented on May 27, 2024

Hi... I am using this.

const getPhone = require('phone') 
function parsePhone (phone) {return  getPhone(phone)[0] }       // getPhone() gives ['+18175698900', 'USA']
function isValidPhone (phone) { return parsePhone(phone) && parsePhone(phone).length > 6  }
let valid = isValidPhone('+31654123456')  // true
let valid = isValidPhone('hallo.key')  // true

I suppose my isValid code is not valid?

from phone.

adam0x01 avatar adam0x01 commented on May 27, 2024

When I run your code, I got this error,

function isValidPhone (phone) { return parsePhone(phone).length > 6  }
                                                        ^
TypeError: Cannot read property 'length' of undefined

The code I executed (package version 1.0.9):

'use strict';
const getPhone = require('phone') 
function parsePhone (phone) {return  getPhone(phone)[0] }       // getPhone() gives ['+18175698900', 'USA']
function isValidPhone (phone) { return parsePhone(phone).length > 6  }
//let valid = isValidPhone('+31654123456')  // true
let valid = isValidPhone('hallo.key')  

The reason maybe: getPhone('hallo.key') will return empty array, and you try to get the first element from an empty array, so parsePhone(phone) will return undefined.

Please check your code.

from phone.

tvld avatar tvld commented on May 27, 2024

Sorry, I rewrote my code for you, to make it more clear as the original is part of a larger method. Now updated above... and I had a small bug in my own code... So shame "hallo.key" indeed does not accept

Question remains: do I validate the number correctly now ? I might be missing something, but what to do to just get isValid(phonenr) ?

(and thank you for your great fast response :) )

from phone.

adam0x01 avatar adam0x01 commented on May 27, 2024

Actually, this package doesn't validate if the number is mobile or not. It's used to normalize the mobile phone number into a E.164 format. You can read the README.md for more information.

from phone.

tvld avatar tvld commented on May 27, 2024

I understand. But you think it is bad practice to consider it validated if parsing returned a non-empty array?

from phone.

adam0x01 avatar adam0x01 commented on May 27, 2024

For the existing code, I think it's bad practice. Especially, for this part parsePhone(phone).length > 6, you should ensure parsePhone(phone) have the property .length, otherwise the code will throw error.

from phone.

tvld avatar tvld commented on May 27, 2024

ok. thank you for your help. Validation is crucial and your code helped to get it going :)

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.