Skip to content

Instantly share code, notes, and snippets.

@iksi
Created July 13, 2016 19:12
Show Gist options
  • Save iksi/81ed31c9347d770740dbf09782dab221 to your computer and use it in GitHub Desktop.
Save iksi/81ed31c9347d770740dbf09782dab221 to your computer and use it in GitHub Desktop.
var debounce = function (callback, wait) {
var timeout;
return function () {
clearTimeout(timeout);
timeout = setTimeout(function () {
callback.apply(this, arguments)
}, (wait || 1));
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment