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
When pipeSync is called explicitly by the client, and passed an asynchronous iterable, it should throw an error:
TypeError(`A synchronous iterable was expected: ${JSON.stringify(input)`)
...because this represents an implementation error.
Presently, the input type is only controlled at compile time, and the function erroneously produces an asynchronous output.
@RebeccaStevens I'm assigning this to yourself, if you want to have more fun with this library ;)
The text was updated successfully, but these errors were encountered:
fix: throw when the sync pipeline receives an async iterable
c2118a1
fix #177
RebeccaStevens
Successfully merging a pull request may close this issue.
When pipeSync is called explicitly by the client, and passed an asynchronous iterable, it should throw an error:
...because this represents an implementation error.
Presently, the input type is only controlled at compile time, and the function erroneously produces an asynchronous output.
@RebeccaStevens I'm assigning this to yourself, if you want to have more fun with this library ;)
The text was updated successfully, but these errors were encountered: