()
| 109 | }); |
| 110 | |
| 111 | function step() { |
| 112 | r.emit('data', data); |
| 113 | if (--cnt === 0) { |
| 114 | r.end(); |
| 115 | return; |
| 116 | } |
| 117 | if (paused) return; |
| 118 | process.nextTick(step); |
| 119 | } |
| 120 | |
| 121 | process.nextTick(step); |
| 122 | }); |
no test coverage detected
searching dependent graphs…