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
IxJS version: 4.3.1
Code to reproduce: `const {of, first} = require('ix/asynciterable') const {timeout} = require('ix/asynciterable/operators')
async function main() { const value = await first(of(42).pipe(timeout(100))) console.log(value) }
main()`
Expected behavior: output '42' to the console
Actual behavior: outputs 'undefined' to the console
Additional information: commit b0c90cb introduced this bug by renaming 'value' to 'val' in src/asynciterable/operators/timeout.ts at line 57
The text was updated successfully, but these errors were encountered:
Yeah this is wrong. We'll fix it.
Sorry, something went wrong.
fix(src/asynciterable/operators/timeout.ts): ensure AsyncIterable tim…
3fefb4a
…eout operator passes its values Typo introduced by linting in a refactor prevented AsyncIterable from passing on its values. fix #325
f5a213a
Fix released in ix@4.4.0.
ix@4.4.0
No branches or pull requests
IxJS version:
4.3.1
Code to reproduce:
`const {of, first} = require('ix/asynciterable')
const {timeout} = require('ix/asynciterable/operators')
async function main()
{
const value = await first(of(42).pipe(timeout(100)))
console.log(value)
}
main()`
Expected behavior:
output '42' to the console
Actual behavior:
outputs 'undefined' to the console
Additional information:
commit b0c90cb introduced this bug by renaming 'value' to 'val' in src/asynciterable/operators/timeout.ts at line 57
The text was updated successfully, but these errors were encountered: