We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stack trace:
TypeError: Cannot read property 'done' of null at data-async-iterators/src/transformers/filter.ts:18:37
data-async-iterator/src/transformers/filter.ts
Line 18 in bd61aae
When writing code of the form
const results = await AsyncStream.from(cursor) .filter(() => true) .toArray();
as a workaround, possible to pass the async iterator directly:
const results = await AsyncStream.from(cursor[Symbol.asyncIterator]()) .filter(() => true) .toArray();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Stack trace:
data-async-iterator/src/transformers/filter.ts
Line 18 in bd61aae
When writing code of the form
as a workaround, possible to pass the async iterator directly:
The text was updated successfully, but these errors were encountered: