Skip to content

Instantly share code, notes, and snippets.

@matesnippets
Created June 9, 2015 21:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matesnippets/68e158f91e4c327a69bb to your computer and use it in GitHub Desktop.
Save matesnippets/68e158f91e4c327a69bb to your computer and use it in GitHub Desktop.
JavaScript, debounce AMD module
'use strict';
define(function() {
/**
* Returns a function, that, as long as it continues to be invoked, will not
* be triggered. The function will be called after it stops being called for
* N milliseconds. If `immediate` is passed, trigger the function on the
* leading edge, instead of the trailing.
*/
var debounce = function(func, wait, immediate) {
var timeout;
return function() {
var context = this, args = arguments;
clearTimeout(timeout);
timeout = setTimeout(function() {
timeout = null;
if (!immediate) {
func.apply(context, args);
}
}, wait);
if (immediate && !timeout) {
func.apply(context, args);
}
};
};
return debounce;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment