Skip to content

Instantly share code, notes, and snippets.

@raribeiro
Last active August 29, 2015 14:14
Show Gist options
  • Save raribeiro/b159c1b669746659fe63 to your computer and use it in GitHub Desktop.
Save raribeiro/b159c1b669746659fe63 to your computer and use it in GitHub Desktop.
Pure promise witch javascript.
var promise = new Promise(function(resolve){
var foo;
resolve(foo=1);//event
});
promise.then(function(){
//Execute on done
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment