pull-stream-to-stream
Advanced tools
Comparing version 1.3.2 to 1.3.3
14
index.js
@@ -84,4 +84,15 @@ | ||
if(read) s.sink(read) | ||
if(read) { | ||
s.sink(read) | ||
var pipe = s.pipe.bind(s) | ||
s.pipe = function (dest, opts) { | ||
var res = pipe(dest, opts) | ||
if(s.paused) s.resume() | ||
return res | ||
} | ||
} | ||
function drain () { | ||
@@ -138,2 +149,1 @@ waiting = false | ||
} | ||
{ | ||
"name": "pull-stream-to-stream", | ||
"description": "", | ||
"version": "1.3.2", | ||
"version": "1.3.3", | ||
"homepage": "https://github.com/dominictarr/pull-stream-to-stream", | ||
@@ -6,0 +6,0 @@ "repository": { |
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
11135
12
381