(target)
| 66585 | function isStream(stream4) { |
| 66586 | return stream4 !== null && typeof stream4 === "object" && typeof stream4.pipe === "function"; |
| 66587 | } |
| 66588 | function isWritableStream(stream4) { |
| 66589 | return isStream(stream4) && stream4.writable !== false && typeof stream4._write === "function" && typeof stream4._writableState === "object"; |
| 66590 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…