bitcoincharts
Advanced tools
Comparing version 0.0.2 to 0.0.3
@@ -19,7 +19,7 @@ var request = require("request"), | ||
if(err || response.statusCode !== 200) { | ||
callback(err ? err : response.statusCode); | ||
callback(new Error(err ? err : response.statusCode)); | ||
return; | ||
} | ||
callback(false, parserLambda(body)); | ||
callback(null, parserLambda(body)); | ||
}); | ||
@@ -26,0 +26,0 @@ }; |
{ | ||
"name": "bitcoincharts", | ||
"description": "bitcoincharts.com API client for node.js", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"keywords": ["btc", "bitcoin", "bitcoincharts"], | ||
@@ -10,3 +10,3 @@ "author": "Preston Skupinski", | ||
"type": "ISC", | ||
"url": "https://github.com/scud43/node-bitcoincharts/blob/master/LICENSE.txt" | ||
"url": "https://github.com/pskupinski/node-bitcoincharts/blob/master/LICENSE.txt" | ||
} | ||
@@ -24,4 +24,4 @@ ], | ||
"type": "git", | ||
"url": "https://github.com/scud43/node-bitcoincharts" | ||
"url": "https://github.com/pskupinski/node-bitcoincharts" | ||
} | ||
} |
@@ -39,2 +39,2 @@ node-bitcoincharts | ||
This module is [ISC licensed](https://github.com/scud43/node-bitcoincharts/blob/master/LICENSE.txt). | ||
This module is [ISC licensed](https://github.com/pskupinski/node-bitcoincharts/blob/master/LICENSE.txt). |
3158