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
The isPrivate function only matches IPv4 mapped addresses in compacted dot-notation.
isPrivate
var ip = require("ip") console.log(ip.isPrivate("::ffff:127.0.0.1")) console.log(ip.isPrivate("::ffff:7f00:0001")) console.log(ip.isPrivate("0:0:0:0:0:ffff:127.0.0.1")) console.log(ip.isPrivate("0:0:0:0:0:ffff:7f00:0001"))
true true true true
true false false false
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
isPrivate
function only matches IPv4 mapped addresses in compacted dot-notation.Example
Expected
Actual
The text was updated successfully, but these errors were encountered: