-
-
Save developit/dd5563ebfd863fcb29d7145b68884d1b to your computer and use it in GitHub Desktop.
An extension of ES6 Promises that allows for easier deferred resolution/rejection
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class Deferred extends Promise { | |
constructor(executor) { | |
super( (resolve, reject) => { | |
this.resolve = resolve; | |
this.reject = reject; | |
if (executor) executor(resolve, reject); | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
looks like there's no access to
this
before super(), so this seems to be about as terse as you can go: https://github.com/tj/deferred.js/blob/master/index.js