(obj)
| 57 | } |
| 58 | |
| 59 | function isDuplexNodeStream(obj) { |
| 60 | return !!( |
| 61 | obj && |
| 62 | (typeof obj.pipe === 'function' && obj._readableState) && |
| 63 | typeof obj.on === 'function' && |
| 64 | typeof obj.write === 'function' |
| 65 | ); |
| 66 | } |
| 67 | |
| 68 | function isNodeStream(obj) { |
| 69 | return ( |
no outgoing calls
no test coverage detected
searching dependent graphs…