-
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.
feat(reorganize): operators now all exported from top level
- Exports all pipeable operators from `rxjs`. BREAKING CHANGE: Pipeable operators must now be imported from `rxjs` like so: `import { map, filter, switchMap } from 'rxjs';` BREAKING CHANGE: Operator versions of static observable creators such as `merge`, `concat`, `zip`, `onErrorResumeNext`, and `race` have been removed. Please use the static versions of those operations. e.g. `a.pipe(concat(b, c))` becomes `concat(a, b, c)`.
- Loading branch information
Showing
17 changed files
with
864 additions
and
682 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
Oops, something went wrong.