Skip to content

Instantly share code, notes, and snippets.

@napoler
Created September 29, 2021 02:16
Show Gist options
  • Save napoler/edaf32b94d87ac531e670c38004a7595 to your computer and use it in GitHub Desktop.
Save napoler/edaf32b94d87ac531e670c38004a7595 to your computer and use it in GitHub Desktop.
Created with Copy to Gist
function throttle( fn, time ) {
var t = 0;
return function() {
var args = arguments, ctx = this;
clearTimeout(t);
t = setTimeout( function() {
fn.apply( ctx, args );
}, time );
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment