Last active
September 9, 2018 21:56
-
-
Save JozefFlakus/414a5e4ca17c0a34dd5fff09022440bc to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| const effect$: Effect = (req$) => | |
| req$.pipe( | |
| // ... | |
| ); | |
| const middleware$: Middleware = (req$, res) => | |
| req$.pipe( | |
| // ... | |
| ); | |
| const error$: ErrorEffect = (req$, res, err) => | |
| req$.pipe( | |
| // ... | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment