Skip to content

Instantly share code, notes, and snippets.

@desandro
Created June 4, 2015 14:39
Show Gist options
  • Save desandro/cec70dd445875198d928 to your computer and use it in GitHub Desktop.
Save desandro/cec70dd445875198d928 to your computer and use it in GitHub Desktop.
function debounce( fn, threshold ) {
var timeout;
return function() {
clearTimeout( timeout );
var args = arguments;
var _this = this;
timeout = setTimeout( function() {
fn.apply( _this, args );
}, threshold || 100 );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment