Javascript – How to combine async await with Bluebird cancelable promises
I have an async operation that should be cancelable. So I decided to use Bluebird Promises to get it done. However, when I try to run it, my code never completes, because (in case of the promise being canceled) everything…