Skip to content

Conversation

@evyncke
Copy link

@evyncke evyncke commented Jan 30, 2024

Compute the length of the longest prefix match.

Compute the length of the longest prefix match.

IPv4.prototype.commonPrefixLength = function (other) {
if (other.kind() !== 'ipv4') {
throw new Error('ipaddr: cannot match ipv6 address with non-ipv6 one');
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
throw new Error('ipaddr: cannot match ipv6 address with non-ipv6 one');
throw new Error('ipaddr: cannot match ipv4 address with non-ipv4 one');

Copy link
Owner

@whitequark whitequark left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's the use case? I'm unconvinced this is a functionality ipaddr.js should be providing.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants