Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save samueleresca/be0a96851dd192b936e6818f8438bb30 to your computer and use it in GitHub Desktop.
Save samueleresca/be0a96851dd192b936e6818f8438bb30 to your computer and use it in GitHub Desktop.
Observable.fromEvent(button, 'click')
.debouceTime(500)
.subscribe(event=>
{
console.log("you clicked");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment