Guest User

Untitled

a guest
Oct 20th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. function conditional() {
  2. return function conditional(ctx, next) {
  3. return next().then(() => {
  4. if (ctx.fresh) {
  5. ctx.status = 304;
  6. ctx.body = null;
  7. }
  8. });
  9. }
  10. }
Add Comment
Please, Sign In to add comment