Skip to content

Instantly share code, notes, and snippets.

@PhilipWee
Created August 13, 2022 02:16
Show Gist options
  • Save PhilipWee/303c14bf0925aca2fd927161fb31931a to your computer and use it in GitHub Desktop.
Save PhilipWee/303c14bf0925aca2fd927161fb31931a to your computer and use it in GitHub Desktop.
//@ts-nocheck (We will handle the typescript later)
function useDebounce(func, delay) {
const debouncedFunction = (...args) => {
setTimeout(() => {
console.log("This runs after (delay) ms");
}, delay);
};
return debouncedFunction;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment