Comparing version 0.14.0 to 0.14.1
@@ -631,11 +631,11 @@ // Utils | ||
var i = k - j; | ||
var a = this.words[i]; | ||
var b = num.words[j]; | ||
var a = this.words[i] | 0; | ||
var b = num.words[j] | 0; | ||
var r = a * b; | ||
var lo = r & 0x3ffffff; | ||
ncarry += (r / 0x4000000) | 0; | ||
lo += rword; | ||
ncarry = (ncarry + ((r / 0x4000000) | 0)) | 0; | ||
lo = (lo + rword) | 0; | ||
rword = lo & 0x3ffffff; | ||
ncarry += lo >>> 26; | ||
ncarry = (ncarry + (lo >>> 26)) | 0; | ||
} | ||
@@ -642,0 +642,0 @@ out.words[k] = rword; |
{ | ||
"name": "bn.js", | ||
"version": "0.14.0", | ||
"version": "0.14.1", | ||
"description": "Big number implementation in pure javascript", | ||
@@ -5,0 +5,0 @@ "main": "lib/bn.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
61549