Skip to content

Instantly share code, notes, and snippets.

@briancavalier
Created August 11, 2014 17:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save briancavalier/19659cad707633006a56 to your computer and use it in GitHub Desktop.
Save briancavalier/19659cad707633006a56 to your computer and use it in GitHub Desktop.
var when = require('when');
when.promise(function(resolve) {
setTimeout(resolve, 100);
}).then(function() {
return when.promise(function(resolve) {
setTimeout(resolve, 100);
})
}).then(function() {
return when.promise(function(resolve) {
setTimeout(resolve, 100);
})
}).done(function() {
console.log('done');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment