Skip to content

Instantly share code, notes, and snippets.

@vinzdef
Created May 8, 2015 14:56
Show Gist options
  • Save vinzdef/1dcedf83a255ef90ac33 to your computer and use it in GitHub Desktop.
Save vinzdef/1dcedf83a255ef90ac33 to your computer and use it in GitHub Desktop.
Debounce a function, simplified from _.js
function debounce (fn, wait){
var timeout;
return function(){
var context = this, args = arguments
var later = function() {
timeout = null
fn.apply(context, args)
}
clearTimeout(timeout)
timeout = setTimeout(later, wait)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment