probe-image-size
Advanced tools
Comparing version 4.1.0 to 4.1.1
@@ -0,1 +1,7 @@ | ||
4.1.1 / 2019-07-11 | ||
------------------ | ||
- Fix streams unpipe (after 4.1.0 changes), #34. | ||
4.1.0 / 2019-07-09 | ||
@@ -2,0 +8,0 @@ ------------------ |
{ | ||
"name": "probe-image-size", | ||
"version": "4.1.0", | ||
"version": "4.1.1", | ||
"description": "Get image size without full download (JPG, GIF, PNG, WebP, BMP, TIFF, PSD)", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -49,3 +49,3 @@ 'use strict'; | ||
// request stream doesn't have unpipe, https://github.com/request/request/issues/874 | ||
if (typeof stream.unpipe === 'function') stream.unpipe(this); | ||
if (typeof stream.unpipe === 'function') stream.unpipe(proxy); | ||
proxy.end(); | ||
@@ -52,0 +52,0 @@ } |
43531