Skip to content

Instantly share code, notes, and snippets.

@median-man
Created February 25, 2020 14:33
Show Gist options
  • Save median-man/c9d5c46fddac9c44638e9cc2241e41c8 to your computer and use it in GitHub Desktop.
Save median-man/c9d5c46fddac9c44638e9cc2241e41c8 to your computer and use it in GitHub Desktop.
debounce
/*
Simple, no frills, debounce function.
*/
const debounce = (func, waitMs) => {
let timeout;
return () => {
if (timeout) {
clearTimeout(timeout);
}
timeout = setTimeout(func, waitMs);
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment