Skip to content

Instantly share code, notes, and snippets.

@jekku
Created August 14, 2016 01:57
Show Gist options
  • Save jekku/177de1c46cf8e10d5252109476611233 to your computer and use it in GitHub Desktop.
Save jekku/177de1c46cf8e10d5252109476611233 to your computer and use it in GitHub Desktop.
exports.returnerSwitch = (req, res, next) => {
switch (req.data) {
case 'say hi':
return res.send({'message': 'say hi'});
case 'say goodbye':
return res.send({'message': 'say goodbye'});
default:
return next('nothing to say');
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment