We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20067f7 commit e6919e1Copy full SHA for e6919e1
test/index.spec.ts
@@ -27,13 +27,17 @@ describe('multiaddr matcher', () => {
27
const exactIP = [
28
'/ip4/0.0.0.0',
29
'/ip6/fc00::',
30
- '/ip6/fe80::8cb1:25ff:fec5:28e3%llw0'
+ '/ip6/fe80::8cb1:25ff:fec5:28e3'
31
+ // https://github.com/ChainSafe/is-ip/issues/9
32
+ // '/ip6/fe80::8cb1:25ff:fec5:28e3%llw0'
33
]
34
35
const goodIP = [
36
...exactIP,
37
'/ip4/123.123.123.123/tcp/80',
- '/ip6/fe80::1cc1:a3b8:322f:cf22%utun0/udp/4921/wss'
38
+ '/ip6/fe80::1cc1:a3b8:322f:cf22/udp/4921/wss'
39
40
+ // '/ip6/fe80::1cc1:a3b8:322f:cf22%utun0/udp/4921/wss'
41
42
43
const badIP = [
0 commit comments