Comparing version 1.0.1 to 1.0.3
{ | ||
"name": "bs58check", | ||
"version": "1.0.1", | ||
"version": "1.0.3", | ||
"description": "A straightforward implementation of base58-check encoding", | ||
@@ -22,5 +22,4 @@ "keywords": [ | ||
"devDependencies": { | ||
"browserify": "^4.2.0", | ||
"coveralls": "^2.10.1", | ||
"istanbul": "^0.2.13", | ||
"istanbul": "^0.2.16", | ||
"jshint": "^2.5.1", | ||
@@ -50,4 +49,4 @@ "mocha": "^1.20.1" | ||
"dependencies": { | ||
"bs58": "^1.2.1" | ||
"bs58": "^2.0.0" | ||
} | ||
} |
@@ -25,3 +25,3 @@ 'use strict'; | ||
function decode(string) { | ||
var buffer = base58.decode(string) | ||
var buffer = new Buffer(base58.decode(string)) | ||
@@ -28,0 +28,0 @@ var payload = buffer.slice(0, -4) |
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
4
13340
+ Addedbs58@2.0.1(transitive)
- Removedbs58@1.2.1(transitive)
Updatedbs58@^2.0.0