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
The buffer operator emits the empty value on closingNotifier completes.
buffer
closingNotifier
No value emitted on closingNotifier completes.
import { fromEvent, interval, buffer, takeUntil, debounceTime } from 'rxjs'; const addItem = fromEvent(document, 'click').pipe(takeUntil(interval(5000))); const debounce = addItem.pipe(debounceTime(500)); addItem.pipe(buffer(debounce)).subscribe((d) => console.log(d));
https://stackblitz.com/edit/rwbsk1a8?devtoolsheight=50&file=index.ts
7.8.1
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
The
buffer
operator emits the empty value onclosingNotifier
completes.Expected behavior
No value emitted on
closingNotifier
completes.Reproduction code
Reproduction URL
https://stackblitz.com/edit/rwbsk1a8?devtoolsheight=50&file=index.ts
Version
7.8.1
Environment
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: