Skip to content

Instantly share code, notes, and snippets.

@patmigliaccio
Created September 2, 2017 01:25
Show Gist options
  • Save patmigliaccio/b642ea885e67c051677a7703bf077c1a to your computer and use it in GitHub Desktop.
Save patmigliaccio/b642ea885e67c051677a7703bf077c1a to your computer and use it in GitHub Desktop.
patmigliaccio.com/rate-limiting 3/20/2017
function limiter(fn, wait){
let isCalled = false;
return function(){
if (!isCalled){
fn();
isCalled = true;
setTimeout(function(){
isCalled = false;
}, wait)
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment