()
| 139 | |
| 140 | // Source yields raw Uint8Array, not wrapped in an array |
| 141 | async function* rawSource() { |
| 142 | yield encoder.encode('hello'); |
| 143 | yield encoder.encode(' world'); |
| 144 | } |
| 145 | const result = await text(rawSource()); |
| 146 | assert.strictEqual(result, 'hello world'); |
| 147 |
no test coverage detected
searching dependent graphs…