Skip to content

Instantly share code, notes, and snippets.

@rblakejohnson
Created November 21, 2018 16:26
Show Gist options
  • Save rblakejohnson/83f2bedbc8342fbac14fa8ac2cce8997 to your computer and use it in GitHub Desktop.
Save rblakejohnson/83f2bedbc8342fbac14fa8ac2cce8997 to your computer and use it in GitHub Desktop.
function fakeRequest(delay=1000, result='success') {
return new Promise((resolve, reject) => {
setTimeout(() => {
if (result === 'success') {
resolve();
}
if (result === 'error') {
reject();
}
if (result === 'random') {
Math.floor(Math.random() * 10) < 4 ? resolve() : reject();
}
}, delay);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment