(values)
| 17 | } |
| 18 | |
| 19 | function createTestWritableStream(values) { |
| 20 | return new WritableStream({ |
| 21 | write(chunk) { |
| 22 | values.push(chunk); |
| 23 | } |
| 24 | }); |
| 25 | } |
| 26 | |
| 27 | { |
| 28 | const rs = createTestReadableStream(); |
no outgoing calls
no test coverage detected
searching dependent graphs…