rets-client
Advanced tools
Comparing version 4.6.9 to 4.6.10
@@ -93,5 +93,2 @@ // Generated by CoffeeScript 1.10.0 | ||
bodyStream = through2(); | ||
bodyStream.on('end', function() { | ||
return bodyStream = null; | ||
}); | ||
handler(headers, bodyStream, false, options).then(function(object) { | ||
@@ -111,3 +108,6 @@ if (!objectStreamDone) { | ||
return parser.onPartEnd = function() { | ||
return bodyStream != null ? bodyStream.end() : void 0; | ||
if (bodyStream != null) { | ||
bodyStream.end(); | ||
} | ||
return bodyStream = null; | ||
}; | ||
@@ -114,0 +114,0 @@ }; |
{ | ||
"name": "rets-client", | ||
"version": "4.6.9", | ||
"version": "4.6.10", | ||
"description": "A RETS client (Real Estate Transaction Standard).", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
93687