Comparing version 0.1.0 to 0.1.1
@@ -20,7 +20,4 @@ var DEFAULT_BITS = 128, | ||
while (string.length < length) { | ||
var x = stream.generate(radix); | ||
console.log(x); | ||
string += DIGITS[x]; | ||
} | ||
while (string.length < length) | ||
string += DIGITS[stream.generate(radix)]; | ||
@@ -27,0 +24,0 @@ return string; |
@@ -8,3 +8,3 @@ { "name" : "csprng" | ||
, "version" : "0.1.0" | ||
, "version" : "0.1.1" | ||
, "engines" : {"node": ">=0.6.0"} | ||
@@ -11,0 +11,0 @@ , "main" : "./lib/csprng" |
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
2830
19