Comparing version 0.1.1 to 0.1.2
@@ -158,4 +158,4 @@ var assert = require('assert'); | ||
while (c.cmp(0) !== 0) { | ||
var r = c.mod(1000000); | ||
c = c.div(1000000); | ||
var r = c.mod(10000000); | ||
c = c.div(10000000); | ||
assert.equal(r.length, 1); | ||
@@ -162,0 +162,0 @@ if (c.cmp(0) !== 0) |
{ | ||
"name": "bn.js", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"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
27444