You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The IPv6 isMulticast() is only checking that the IP's type is 'Multicast' (see here). The available types include numerous other multicast types with descriptions that look to be straight from the spec.
The isMulticast() method should include checks for all of the multicast types, or do a .includes(...) check instead of === for the 'Multicast' string.
The text was updated successfully, but these errors were encountered:
The IPv6 isMulticast() is only checking that the IP's type is 'Multicast' (see here). The available types include numerous other multicast types with descriptions that look to be straight from the spec.
The isMulticast() method should include checks for all of the multicast types, or do a .includes(...) check instead of === for the 'Multicast' string.
The text was updated successfully, but these errors were encountered: