()
| 1054 | |
| 1055 | // Both close and finish should trigger unpipe, but only once. |
| 1056 | function onclose() { |
| 1057 | dest.removeListener('finish', onfinish); |
| 1058 | unpipe(); |
| 1059 | } |
| 1060 | dest.once('close', onclose); |
| 1061 | function onfinish() { |
| 1062 | debug('onfinish'); |
nothing calls this directly
no test coverage detected