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
It seems like this library doesn't support wildcard IP-addresses.
This was not obvious before the 7.0.0 release, since you didn't instantly fail the address in the constructor.
Now:
try { const address = new Address4('192.168.0.*') } catch (err) { console.log(err) // AddressError: Invalid IPv4 address. }
Why are wildcard IPs not considered valid? This made the change to ip-address v7 fail an important part of my application I'm afraid.
The text was updated successfully, but these errors were encountered:
Hmm, apparently the asterix might not be a standard. So perhaps we've done something wrong instead.
Sorry, something went wrong.
No branches or pull requests
It seems like this library doesn't support wildcard IP-addresses.
This was not obvious before the 7.0.0 release, since you didn't instantly fail the address in the constructor.
Now:
Why are wildcard IPs not considered valid? This made the change to ip-address v7 fail an important part of my application I'm afraid.
The text was updated successfully, but these errors were encountered: