-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(Subscriber): use only local Subscriber instances
This removes any checks for `Subscriber` symbol or . That was a micro-optimization that proved to be problematic for node projects with more than one instance of RxJS. This means that all local `Subject` instances will be wrapped by `SafeSubscriber`, but prior to that, they were wrapped in `SubjectSubscriber` anyhow, so the difference is minimal. Leaves behind `SubjectSubscriber` and implementations of `rxSubscriber`, which are still functioning, but now cruft.
- Loading branch information
Showing
4 changed files
with
7 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters