Skip to content

Instantly share code, notes, and snippets.

@caioregatieri
Created February 14, 2018 13:29
Show Gist options
  • Save caioregatieri/e34e859a1ae0cc3f4f9081fe105b3347 to your computer and use it in GitHub Desktop.
Save caioregatieri/e34e859a1ae0cc3f4f9081fe105b3347 to your computer and use it in GitHub Desktop.
function debounce(fn, delay){
let timer = null
return function(){
clearTimeout(timer)
setTimeout(function(){
fn()
}, delay)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment