| 1 | export class Stream<T> implements AsyncIterator<T> { |
| 2 | private readonly queue: T[] = [] |
| 3 | private readResolve?: (value: IteratorResult<T>) => void |
| 4 | private readReject?: (error: unknown) => void |
nothing calls this directly
no outgoing calls
no test coverage detected