pmcf 1.63.3 → 1.64.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/utils.mjs +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pmcf",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.64.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"lint:typescript": "tsc --allowJs --checkJs --noEmit --resolveJsonModule --target es2024 --lib esnext -m esnext --module nodenext --moduleResolution nodenext ./src**/*.mjs"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"npm-pkgbuild": "^17.3.
|
|
41
|
+
"npm-pkgbuild": "^17.3.2",
|
|
42
42
|
"pacc": "^3.3.0",
|
|
43
43
|
"pkg-dir": "^8.0.0"
|
|
44
44
|
},
|
package/src/utils.mjs
CHANGED
|
@@ -182,3 +182,5 @@ export function hasWellKnownSubnet(address) {
|
|
|
182
182
|
|
|
183
183
|
const IPV4_LOCALHOST = _encode(ipv4, "127.0.0.1");
|
|
184
184
|
const IPV6_LOCALHOST = _encode(ipv6, "::1");
|
|
185
|
+
const IPV6_LINK_LOCAL_BROADCAST = _encode(ipv6,"ff02::1");
|
|
186
|
+
const IPV6_ROUTER_BROADCAST = _encode(ipv6,"ff02::2");
|