Skip to content

Instantly share code, notes, and snippets.

@A
Created July 28, 2014 11:26
Show Gist options
  • Save A/675ee7985c77043667ea to your computer and use it in GitHub Desktop.
Save A/675ee7985c77043667ea to your computer and use it in GitHub Desktop.
function debounce(cb, timeout) {
var timer;
return function () {
timer && clearTimeout(timer);
timer = setTimeout(function () {
cb.apply(this, arguments);
}, timeout);
}.bind(this);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment