Skip to content

Instantly share code, notes, and snippets.

@tim-smart
Created September 1, 2010 04:39
Show Gist options
  • Save tim-smart/560231 to your computer and use it in GitHub Desktop.
Save tim-smart/560231 to your computer and use it in GitHub Desktop.
db.get(stuff, function (error, results) {
// Do some stuff
db.get('bacon', getTheBacon);
});
var getTheBacon = function (error, results) {
// Do stuff
db.get('beer', drinkTheBeer);
};
var drinkTheBeer = function (error, results) {
// Etc...
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment