Skip to content

Instantly share code, notes, and snippets.

@bigmeech
Last active August 29, 2015 14:07
Show Gist options
  • Save bigmeech/abb53b238eaaf3fa1971 to your computer and use it in GitHub Desktop.
Save bigmeech/abb53b238eaaf3fa1971 to your computer and use it in GitHub Desktop.
switch alternative
function fomatCSV(req, res){
//format csv
}
function formatExcel(req, res){
//formatExcel
}
//------- switch alternative--
var formats = {
csv:formatCSV,
excel:formatExcel
};
if(formats[req.query.format]){
formats[req.query.format](req, res);
} else next();
//-------the switch ends here ----
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment