Skip to content

Instantly share code, notes, and snippets.

@trezy
Created October 19, 2017 14:46
Show Gist options
  • Save trezy/53ef191784ab95808f95c0b6d219d7c0 to your computer and use it in GitHub Desktop.
Save trezy/53ef191784ab95808f95c0b6d219d7c0 to your computer and use it in GitHub Desktop.
function conditional() {
return function conditional(ctx, next) {
return next().then(() => {
if (ctx.fresh) {
ctx.status = 304;
ctx.body = null;
}
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment