()
| 11 | const fromAsync = (...args) => from(...args).map(async (x) => x); |
| 12 | |
| 13 | const naturals = () => from(async function*() { |
| 14 | let i = 1; |
| 15 | while (true) { |
| 16 | yield i++; |
| 17 | } |
| 18 | }()); |
| 19 | |
| 20 | { |
| 21 | // Synchronous streams |
no test coverage detected
searching dependent graphs…