Skip to content

Instantly share code, notes, and snippets.

@JozefFlakus
Last active September 9, 2018 21:56
Show Gist options
  • Save JozefFlakus/414a5e4ca17c0a34dd5fff09022440bc to your computer and use it in GitHub Desktop.
Save JozefFlakus/414a5e4ca17c0a34dd5fff09022440bc to your computer and use it in GitHub Desktop.
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