Skip to content

Instantly share code, notes, and snippets.

@santosh79
Created February 6, 2015 19:38
Show Gist options
  • Save santosh79/824ce1c27a86966dae68 to your computer and use it in GitHub Desktop.
Save santosh79/824ce1c27a86966dae68 to your computer and use it in GitHub Desktop.
function handleSearchRequests(req, res) {
var isAToggleSearch = (req.params['toggle'] === 'A');
if (isAToggleSearch) {
doToggleSearch(req.params, res);
} else {
doRegularSearch(req.params, res);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment