Skip to content

Instantly share code, notes, and snippets.

@Michaela-Davis
Created March 16, 2018 00:05
Show Gist options
  • Save Michaela-Davis/1f0821362a43fa322571c9a1373dc757 to your computer and use it in GitHub Desktop.
Save Michaela-Davis/1f0821362a43fa322571c9a1373dc757 to your computer and use it in GitHub Desktop.
throttle function
function throttle(func, wait, options) {
var context, args, result;
var timeout = null;
var previous = 0;
if (!options) options = {};
var later = function() {
previous = options.leading === false ? 0 : Date.now();
timeout = null;
result = func.apply(context, args);
if (!timeout) context = args = null;
};
return function() {
var now = Date.now();
if (!previous && options.leading === false) previous = now;
var remaining = wait - (now - previous);
context = this;
args = arguments;
if (remaining <= 0 || remaining > wait) {
if (timeout) {
clearTimeout(timeout);
timeout = null;
}
previous = now;
result = func.apply(context, args);
if (!timeout) context = args = null;
} else if (!timeout && options.trailing !== false) {
timeout = setTimeout(later, remaining);
}
return result;
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment