Skip to content

Instantly share code, notes, and snippets.

@ecmel
Created March 19, 2017 15:57
Show Gist options
  • Save ecmel/3984284f1e37701e3812bef2a1a7cd92 to your computer and use it in GitHub Desktop.
Save ecmel/3984284f1e37701e3812bef2a1a7cd92 to your computer and use it in GitHub Desktop.
function Deferred(data) {
this.data = data || {}
this.promise = new Promise((resolve, reject) => {
this.resolve = resolve
this.reject = reject
})
Object.freeze(this)
}
export default Deferred
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment