(stream)
| 1641 | } |
| 1642 | |
| 1643 | function getReadableStreamPipeCount (stream) { |
| 1644 | var count = stream._readableState.pipesCount |
| 1645 | |
| 1646 | return typeof count !== 'number' |
| 1647 | ? stream._readableState.pipes.length |
| 1648 | : count |
| 1649 | } |
| 1650 | |
| 1651 | function isReadableStreamFlowing (stream) { |
| 1652 | return Boolean(stream._readableState.flowing) |
no outgoing calls
no test coverage detected
searching dependent graphs…