Skip to content

Instantly share code, notes, and snippets.

@KamMif
Created July 7, 2019 18:05
Show Gist options
  • Save KamMif/cd6906bc3873f22b347060e824d443b9 to your computer and use it in GitHub Desktop.
Save KamMif/cd6906bc3873f22b347060e824d443b9 to your computer and use it in GitHub Desktop.
add timeout
function timeout(ms, fn) {
let timer = setTimeout(() => {
if (timer) console.log('Function timedout');
timer = null;
}, ms);
return (...args) => {
if (timer) {
timer = null;
fn(...args);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment