Comparing version 1.0.1 to 1.0.2
@@ -27,3 +27,3 @@ // encode32: Base32 encoding for 32-bit numbers inspired by Douglas Crockford | ||
var i = digits.indexOf(s.toUpperCase()); | ||
decode_table[c] = i > 0 ? i: NaN; | ||
decode_table[c] = i >= 0 ? i : NaN; | ||
} | ||
@@ -30,0 +30,0 @@ |
{ | ||
"name": "encode32", | ||
"description": "an encoding for 32-bit numbers inspired by Crockford Base32", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"author": "Ken Woodruff <ken.woodruff@gmail.com>", | ||
@@ -6,0 +6,0 @@ "repository": "http://github.com/femto113/node-encode32.git", |
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
7063
6
90