Comparing version 3.0.9 to 3.0.10
{ | ||
"name": "base-x", | ||
"version": "3.0.9", | ||
"version": "3.0.10", | ||
"description": "Fast base encoding / decoding of any given alphabet", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -80,3 +80,3 @@ 'use strict' | ||
// Process the characters. | ||
while (source[psz]) { | ||
while (psz < source.length) { | ||
// Decode character | ||
@@ -83,0 +83,0 @@ var carry = BASE_MAP[source.charCodeAt(psz)] |
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
9355