Skip to content

Instantly share code, notes, and snippets.

@ryugoo
Created August 27, 2013 09:12
Show Gist options
  • Select an option

  • Save ryugoo/6351392 to your computer and use it in GitHub Desktop.

Select an option

Save ryugoo/6351392 to your computer and use it in GitHub Desktop.
// 1 / 1000 [ms] (3rd argument, true, The ready-to-run in the first call.)
var func = _.debounce(function () {
console.log('Debounced function.');
}, 1000, true);
func(); // Debounced function.
func(); // nop
func(); // nop
func(); // nop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment