Skip to content

Instantly share code, notes, and snippets.

@nikmartin
Created July 11, 2013 15:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nikmartin/5976680 to your computer and use it in GitHub Desktop.
Save nikmartin/5976680 to your computer and use it in GitHub Desktop.
"use strict";
module.exports = function () {
return function (req, res, next) {
//do stuff here
debug("NEEEXT!");
return res.end();
}
next();
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment