Skip to content

Instantly share code, notes, and snippets.

@ericelliott
Created January 23, 2017 02:51
Show Gist options
  • Save ericelliott/fa2de1c01426ca97949315eec877801b to your computer and use it in GitHub Desktop.
Save ericelliott/fa2de1c01426ca97949315eec877801b to your computer and use it in GitHub Desktop.
Wait with speculation
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