Skip to content

Instantly share code, notes, and snippets.

@jekku
Created August 14, 2016 01:55
Show Gist options
  • Save jekku/fc2ae81c259fec486ffddfe76d691cb8 to your computer and use it in GitHub Desktop.
Save jekku/fc2ae81c259fec486ffddfe76d691cb8 to your computer and use it in GitHub Desktop.
exports.randomFunction = (req, res, next) => {
if (req.condition) {
return res.send(req.condition)
}
if (req.condition2) {
return res.send(req.condition2)
}
res.send({});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment