()
| 76 | // Map works on non-objectMode streams |
| 77 | const stream = new Readable({ |
| 78 | read() { |
| 79 | this.push(Uint8Array.from([1])); |
| 80 | this.push(Uint8Array.from([2])); |
| 81 | this.push(null); |
| 82 | } |
| 83 | }).map(async ([x]) => { |
| 84 | return x + x; |
| 85 | }).map((x) => x + x); |
no test coverage detected
searching dependent graphs…