Compare commits
2 Commits
bb30d5acf6
...
961740ffa0
Author | SHA1 | Date |
---|---|---|
AJ ONeal | 961740ffa0 | |
AJ ONeal | 3aac42d08b |
3
index.js
3
index.js
|
@ -120,6 +120,9 @@ function handleResponse(resp, opts, cb) {
|
||||||
resp.body = '';
|
resp.body = '';
|
||||||
}
|
}
|
||||||
resp._bodyLength = 0;
|
resp._bodyLength = 0;
|
||||||
|
resp.once('error', function (err) {
|
||||||
|
cb(err, resp, resp.body);
|
||||||
|
});
|
||||||
resp.on('readable', function () {
|
resp.on('readable', function () {
|
||||||
var chunk;
|
var chunk;
|
||||||
while ((chunk = resp.read())) {
|
while ((chunk = resp.read())) {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"name": "@root/request",
|
"name": "@root/request",
|
||||||
"version": "1.8.2",
|
"version": "1.8.3",
|
||||||
"lockfileVersion": 1
|
"lockfileVersion": 1
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@root/request",
|
"name": "@root/request",
|
||||||
"version": "1.8.2",
|
"version": "1.8.3",
|
||||||
"description": "A lightweight, zero-dependency drop-in replacement for request",
|
"description": "A lightweight, zero-dependency drop-in replacement for request",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"files": [
|
"files": [
|
||||||
|
|
Loading…
Reference in New Issue