Skip to content

Instantly share code, notes, and snippets.

@mralexho
Created January 8, 2018 03:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mralexho/df2a58c2268b94ce3f7768aada3778de to your computer and use it in GitHub Desktop.
Save mralexho/df2a58c2268b94ce3f7768aada3778de to your computer and use it in GitHub Desktop.
VanillaJS Debounce Func
function debounce(func, wait = 20, immediate = true) {
var timeout;
return function() {
var context = this, args = arguments;
var later = function() {
timeout = null;
if (!immediate) func.apply(context, args);
};
var now = immediate && !timeout;
clearTimeout(timeout);
timeout = setTimeout(later, wait);
if (callNow) func.apply(context, args);
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment