Skip to content

Instantly share code, notes, and snippets.

@kogovsekmatic
Created November 16, 2016 12:49
Show Gist options
  • Save kogovsekmatic/337fa6465d8da1a24f4b900a413de768 to your computer and use it in GitHub Desktop.
Save kogovsekmatic/337fa6465d8da1a24f4b900a413de768 to your computer and use it in GitHub Desktop.
function throttle(fn, w){
let lock;
let res;
return function(...args){
if(lock){
return res;
}else{
setTimeout(() => lock = false, w);
res = fn.apply(this, args);
lock = true;
return res;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment