Skip to content

Instantly share code, notes, and snippets.

@santosh79
Created February 6, 2015 19:37
Show Gist options
  • Save santosh79/45e0b18a1c5064648449 to your computer and use it in GitHub Desktop.
Save santosh79/45e0b18a1c5064648449 to your computer and use it in GitHub Desktop.
function handleSearchRequests(req, res) {
if (req.params['toggle'] === 'A') {
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