(obj)
| 88 | } |
| 89 | |
| 90 | function isWritableStream(obj) { |
| 91 | return !!( |
| 92 | obj && |
| 93 | !isNodeStream(obj) && |
| 94 | typeof obj.getWriter === 'function' && |
| 95 | typeof obj.abort === 'function' |
| 96 | ); |
| 97 | } |
| 98 | |
| 99 | function isTransformStream(obj) { |
| 100 | return !!( |
no test coverage detected
searching dependent graphs…