Skip to content

Instantly share code, notes, and snippets.

@escusado
Last active August 29, 2015 13:58
Show Gist options
  • Save escusado/10152028 to your computer and use it in GitHub Desktop.
Save escusado/10152028 to your computer and use it in GitHub Desktop.
app.get('url', function(data){
handleData(data)
});
var handleData = function(data){
//do stuff with it
}
///////////////////////////////
app.get('url', function(data){
handleData(data)
});
var handleData = function(data){
app.get('another url request that dependes on data'+data.id, function(more_data){
//do stuff with it
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment