(readable, unpipeInfo)
| 6640 | |
| 6641 | dest.on('unpipe', onunpipe); |
| 6642 | function onunpipe(readable, unpipeInfo) { |
| 6643 | debug('onunpipe'); |
| 6644 | if (readable === src) { |
| 6645 | if (unpipeInfo && unpipeInfo.hasUnpiped === false) { |
| 6646 | unpipeInfo.hasUnpiped = true; |
| 6647 | cleanup(); |
| 6648 | } |
| 6649 | } |
| 6650 | } |
| 6651 | |
| 6652 | function onend() { |
| 6653 | debug('onend'); |
nothing calls this directly
no test coverage detected
searching dependent graphs…