Skip to content

Instantly share code, notes, and snippets.

@mrlemoos
Last active July 12, 2022 18:45
Show Gist options
  • Save mrlemoos/e07561c427b956ff1ab9eb824170f1e9 to your computer and use it in GitHub Desktop.
Save mrlemoos/e07561c427b956ff1ab9eb824170f1e9 to your computer and use it in GitHub Desktop.
Debounce function (JavaScript Vanilla)
let debounceTimer;
function debounce(callback, time) {
clearTimeout(debounceTimer);
debounceTimer = setTimeout(callback, time);
}
module.exports = debounce;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment