Skip to content

Instantly share code, notes, and snippets.

@mosluce
Created November 25, 2013 06:46
Show Gist options
  • Save mosluce/7637274 to your computer and use it in GitHub Desktop.
Save mosluce/7637274 to your computer and use it in GitHub Desktop.
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