Skip to content

Instantly share code, notes, and snippets.

@langjt
Last active July 13, 2018 04:45
Show Gist options
  • Save langjt/dcfa2425b249851de96ad8cb7e0509b0 to your computer and use it in GitHub Desktop.
Save langjt/dcfa2425b249851de96ad8cb7e0509b0 to your computer and use it in GitHub Desktop.
function debounce(fn, delay) {
var timeout;
return function() {
var _this = this;
var _arguements = arguments;
clearTimeout(timeout);
timeout = setTimeout(function() {
fn.apply(_this, _arguements);
}, delay);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment