ip-address
Advanced tools
Comparing version 5.9.1 to 5.9.2
@@ -193,3 +193,3 @@ 'use strict'; | ||
return new BigInteger( | ||
this.mask() + _.repeat(0, constants.BITS - this.subnetMask), 2 | ||
this.mask() + _.repeat('0', constants.BITS - this.subnetMask), 2 | ||
); | ||
@@ -229,3 +229,3 @@ }; | ||
return new BigInteger( | ||
this.mask() + _.repeat(1, constants.BITS - this.subnetMask), 2 | ||
this.mask() + _.repeat('1', constants.BITS - this.subnetMask), 2 | ||
); | ||
@@ -232,0 +232,0 @@ }; |
@@ -319,3 +319,3 @@ 'use strict'; | ||
return new BigInteger( | ||
this.mask() + _.repeat(0, constants6.BITS - this.subnetMask), 2 | ||
this.mask() + _.repeat('0', constants6.BITS - this.subnetMask), 2 | ||
); | ||
@@ -355,3 +355,3 @@ }; | ||
return new BigInteger( | ||
this.mask() + _.repeat(1, constants6.BITS - this.subnetMask), 2 | ||
this.mask() + _.repeat('1', constants6.BITS - this.subnetMask), 2 | ||
); | ||
@@ -358,0 +358,0 @@ }; |
@@ -10,3 +10,3 @@ { | ||
], | ||
"version": "5.9.1", | ||
"version": "5.9.2", | ||
"author": "Beau Gunderson <beau@beaugunderson.com> (https://beaugunderson.com/)", | ||
@@ -13,0 +13,0 @@ "license": "MIT", |
Sorry, the diff of this file is too big to display
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
2382083