Forked from john-doherty/javascript-promise-timeout.js
Created
November 27, 2018 00:53
-
-
Save leoalipazaga/e217f46839ed303f277e24275b928e3b to your computer and use it in GitHub Desktop.
Adds a timeout to a JavaScript promise, rejects if not resolved within timeout period
This file contains hidden or 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
/** | |
* wraps a promise in a timeout, allowing the promise to reject if not resolve with a specific period of time | |
* @param {integer} ms - milliseconds to wait before rejecting promise if not resolved | |
* @param {Promise} promise to monitor | |
* @Example | |
* promiseTimeout(1000, fetch('https://courseof.life/johndoherty.json')) | |
* .then(function(cvData){ | |
* alert(cvData); | |
* }) | |
* .catch(function(){ | |
* alert('request either failed or timedout'); | |
* }); | |
*/ | |
function promiseTimeout(ms, promise){ | |
return new Promise(function(resolve, reject){ | |
// create a timeout to reject promise if not resolved | |
var timer = setTimeout(function(){ | |
reject(new Error("promise timeout")); | |
}, ms); | |
promise | |
.then(function(res){ | |
clearTimeout(timer); | |
resolve(res); | |
}) | |
.catch(function(err){ | |
clearTimeout(timer); | |
reject(err); | |
}); | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment