()
| 6 | const { pull, from, text, tap } = require('stream/iter'); |
| 7 | |
| 8 | async function testPullIdentity() { |
| 9 | const data = await text(pull(from('hello-async'))); |
| 10 | assert.strictEqual(data, 'hello-async'); |
| 11 | } |
| 12 | |
| 13 | async function testPullStatelessTransform() { |
| 14 | const upper = (chunks) => { |
no test coverage detected