Skip to content

Instantly share code, notes, and snippets.

@tkheyfets
Last active April 15, 2016 02:58
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 tkheyfets/dee438618c9bc45ff65069deb47bee99 to your computer and use it in GitHub Desktop.
Save tkheyfets/dee438618c9bc45ff65069deb47bee99 to your computer and use it in GitHub Desktop.
function debounce(fn, wait, immediate) {
var timeout;
return function() {
var context = this, args = arguments;
var later = function() {
timeout = null;
if (!immediate) fn.apply(context, args);
};
var callNow = immediate && !timeout;
clearTimeout(timeout);
timeout = setTimeout(later, wait);
if (callNow) fn.apply(context, args);
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment