Skip to content

Instantly share code, notes, and snippets.

@tehbeard
Created June 8, 2014 00:56
Show Gist options
  • Save tehbeard/c8adc5be97311d13e78f to your computer and use it in GitHub Desktop.
Save tehbeard/c8adc5be97311d13e78f to your computer and use it in GitHub Desktop.
Promise w/o being stuck inside it.
function getDeferred(){var _r,_e;var _p = new Promise(function(r,e){_r=r;_e=e;});_p.resolve = _r;_p.reject = _e;return _p;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment