ip-utilties 1.4.1 → 1.4.2
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 +1 -1
- package/src/ip.mjs +1 -1
package/package.json
CHANGED
package/src/ip.mjs
CHANGED
|
@@ -232,7 +232,7 @@ export function normalizeCIDR(address) {
|
|
|
232
232
|
} else if (isUniqueLocal(address)) {
|
|
233
233
|
prefix = "fd00::";
|
|
234
234
|
longPrefix = prefix;
|
|
235
|
-
prefixLength =
|
|
235
|
+
prefixLength = 64;
|
|
236
236
|
} else {
|
|
237
237
|
const family = /*_family(prefix); */ isIPv6(prefix) ? ipv6 : ipv4;
|
|
238
238
|
let n;
|