Skip to content

Instantly share code, notes, and snippets.

@Elevista
Last active November 7, 2017 02:14
Show Gist options
  • Save Elevista/bf45803adff83434c09ae25eb4d45b6f to your computer and use it in GitHub Desktop.
Save Elevista/bf45803adff83434c09ae25eb4d45b6f to your computer and use it in GitHub Desktop.
ES6-Defer
export function Deferred () {
this.promise = new Promise((resolve, reject) => Object.assign(this, {resolve, reject}))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment