(state, stream)
| 25071 | } |
| 25072 | |
| 25073 | function endReadableNT(state, stream) { |
| 25074 | // Check that we didn't get one last unshift. |
| 25075 | if (!state.endEmitted && state.length === 0) { |
| 25076 | state.endEmitted = true; |
| 25077 | stream.readable = false; |
| 25078 | stream.emit('end'); |
| 25079 | } |
| 25080 | } |
| 25081 | |
| 25082 | function forEach(xs, f) { |
| 25083 | for (var i = 0, l = xs.length; i < l; i++) { |
nothing calls this directly
no outgoing calls
no test coverage detected