()
| 304 | it('can be created from a function', async () => { |
| 305 | let i = -1; |
| 306 | const func = () => |
| 307 | ++i < 7 ? {value: i, done: false} : {value: null, done: true}; |
| 308 | |
| 309 | const readIterator = iteratorFromFunction(func); |
| 310 | const result = await readIterator.toArrayForTest(); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…