We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
isV6Format() returns true for non IPv6 mapped IPv4 adresses:
isV6Format()
console.log(require('ip').isV6Format('8.8.8.8')); //true
Using Version 1.1.4 on Node v7.3.0
1.1.4
v7.3.0
The text was updated successfully, but these errors were encountered:
Was going to report the same.
ip.isV4Format('127.0.0.1') // true ip.isV6Format('127.0.0.1') // true ip.isV4Format('::1') // false ip.isV6Format('::1') // true
ip 1.1.4 on node 4.2.6
4.2.6
Sorry, something went wrong.
Same for me, I switched to https://github.com/LinusU/is-my-ip-valid
No branches or pull requests
Hi,
isV6Format()
returns true for non IPv6 mapped IPv4 adresses:Using Version
1.1.4
on Nodev7.3.0
The text was updated successfully, but these errors were encountered: