()
| 182 | |
| 183 | // Consumers accept string sources directly (normalized via from/fromSync) |
| 184 | async function testBytesStringSource() { |
| 185 | const result = await bytes('hello-bytes'); |
| 186 | assert.strictEqual(new TextDecoder().decode(result), 'hello-bytes'); |
| 187 | } |
| 188 | |
| 189 | function testBytesSyncStringSource() { |
| 190 | const result = bytesSync('hello-sync'); |
no test coverage detected
searching dependent graphs…