Created
January 23, 2017 02:51
-
-
Save ericelliott/fa2de1c01426ca97949315eec877801b to your computer and use it in GitHub Desktop.
Wait with speculation
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
import speculation from 'speculation'; | |
const wait = ( | |
time, | |
cancel = Promise.reject() // By default, don't cancel | |
) => speculation((resolve, reject, onCancel) => { | |
const timer = setTimeout(resolve, time); | |
// Use onCancel to clean up any lingering resources | |
// and then call reject(). You can pass a custom reason. | |
onCancel(() => { | |
clearTimeout(timer); | |
reject(new Error('Cancelled')); | |
}); | |
}, cancel); // remember to pass in cancel! | |
wait(200, wait(500)).then( | |
() => console.log('Hello!'), | |
(e) => console.log(e) | |
); // 'Hello!' | |
wait(200, wait(50)).then( | |
() => console.log('Hello!'), | |
(e) => console.log(e) | |
); // [Error: Cancelled] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment