Comparing version 0.1.6 to 0.1.7
@@ -138,3 +138,3 @@ /** | ||
const divideSubnet = function (addr, mask0, mask1, limit, abbr) { | ||
export const divideSubnet = function (addr, mask0, mask1, limit, abbr) { | ||
if (!_validate(addr)) { | ||
@@ -176,3 +176,3 @@ throw new Error('Invalid address: ' + addr); | ||
const range = function (addr, mask0, mask1, abbr) { | ||
export const range = function (addr, mask0, mask1, abbr) { | ||
if (!_validate(addr)) { | ||
@@ -207,3 +207,3 @@ throw new Error('Invalid address: ' + addr); | ||
const randomSubnet = function (addr, mask0, mask1, limit, abbr) { | ||
export const randomSubnet = function (addr, mask0, mask1, limit, abbr) { | ||
if (!_validate(addr)) { | ||
@@ -246,3 +246,3 @@ throw new Error('Invalid address: ' + addr); | ||
const ptr = function (addr, mask) { | ||
export const ptr = function (addr, mask) { | ||
if (!_validate(addr)) { | ||
@@ -249,0 +249,0 @@ throw new Error('Invalid address: ' + addr); |
{ | ||
"name": "ip6", | ||
"version": "0.1.6", | ||
"version": "0.1.7", | ||
"description": "IPv6 address helper utilities.", | ||
@@ -5,0 +5,0 @@ "main": "ip6.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
27762