(protected upstream: LazyIterator<T>, protected maxCount: number)
| 564 | count = 0; |
| 565 | |
| 566 | constructor(protected upstream: LazyIterator<T>, protected maxCount: number) { |
| 567 | super(); |
| 568 | this.lastRead = Promise.resolve({value: null, done: false}); |
| 569 | } |
| 570 | |
| 571 | summary() { |
| 572 | return `${this.upstream.summary()} -> Skip`; |
nothing calls this directly
no outgoing calls
no test coverage detected