Skip to content

Instantly share code, notes, and snippets.

@jsuryahyd
Created July 14, 2020 13:21
Show Gist options
  • Save jsuryahyd/c5c8ab3a13ab4b8949a1310531994272 to your computer and use it in GitHub Desktop.
Save jsuryahyd/c5c8ab3a13ab4b8949a1310531994272 to your computer and use it in GitHub Desktop.
Some utils for frontend
/**
const myInput = document.getElementById("myInput");
function helloInput() {
console.log( "You typed:", myInput.value );
}
myInput.addEventListener(
"keyup",
debounce( helloInput, 1000 )
);
*/
function debounce( callback, delay ) {
let timeout;
return function() {
clearTimeout( timeout );
timeout = setTimeout( callback, delay );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment