Skip to content

Instantly share code, notes, and snippets.

@JozefFlakus
Last active August 28, 2018 20:50
Show Gist options
  • Save JozefFlakus/466cdf99e57643c2a699975e0269d90b to your computer and use it in GitHub Desktop.
Save JozefFlakus/466cdf99e57643c2a699975e0269d90b to your computer and use it in GitHub Desktop.
Marble.js - Example middleware
export const authorize$: Middleware = (req$) =>
req$.pipe(
switchMap(req => iif(
() => !isAuthorized(req),
throwError(new HttpError('Unauthorized', HttpStatus.UNAUTHORIZED)),
of(req),
)),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment