Comparing version 0.5.1 to 0.5.2
{ | ||
"name": "popsicle", | ||
"version": "0.5.1", | ||
"version": "0.5.2", | ||
"description": "Simple HTTP requests for node and the browser", | ||
@@ -5,0 +5,0 @@ "main": "popsicle.js", |
@@ -1277,8 +1277,8 @@ /* global define */ | ||
request.once('error', function (err) { | ||
request.once('error', function () { | ||
return reject(req.aborted ? abortError(req) : unavailableError(req)) | ||
}) | ||
// TODO: Figure out why there's two errors proxying under `0.10`. | ||
requestProxy.once('error', function () {}) | ||
// Node 0.10 needs to catch errors on the request proxy. | ||
requestProxy.once('error', reject) | ||
@@ -1285,0 +1285,0 @@ req._raw = request |
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
51089