Comparing version 4.11.5 to 4.11.6
{ | ||
"name": "bn.js", | ||
"version": "4.11.5", | ||
"version": "4.11.6", | ||
"description": "Big number implementation in pure javascript", | ||
@@ -5,0 +5,0 @@ "main": "lib/bn.js", |
@@ -65,2 +65,7 @@ /* global describe, it */ | ||
}); | ||
it('should not mask when number is bigger than length', function () { | ||
assert.equal(new BN(0xe3).imaskn(56).toString(16), 'e3'); | ||
assert.equal(new BN(0xe3).imaskn(26).toString(16), 'e3'); | ||
}); | ||
}); | ||
@@ -67,0 +72,0 @@ |
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
173715
4726