Comparing version 1.0.0 to 1.0.1
@@ -22,3 +22,3 @@ // encode32: Base32 encoding for 32-bit numbers inspired by Douglas Crockford | ||
var encode_table = digits.split(''); | ||
var decode_table = new Uint8Array(256); | ||
var decode_table = new Array(256); | ||
for (var c = 0; c < 256; c++) { | ||
@@ -25,0 +25,0 @@ s = String.fromCharCode(c); |
{ | ||
"name": "encode32", | ||
"description": "an encoding for 32-bit numbers inspired by Crockford Base32", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"author": "Ken Woodruff <ken.woodruff@gmail.com>", | ||
@@ -9,3 +9,3 @@ "repository": "http://github.com/femto113/node-encode32.git", | ||
"license": "MIT", | ||
"engines": { "node": ">= 0.6.7" } | ||
"engines": { "node": ">= 0.4.7" } | ||
} |
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
6396