Skip to content

Instantly share code, notes, and snippets.

@tuandinh0801
Last active November 29, 2018 16:27
Show Gist options
  • Save tuandinh0801/10e2918dcde69699c44de6626ca39cc2 to your computer and use it in GitHub Desktop.
Save tuandinh0801/10e2918dcde69699c44de6626ca39cc2 to your computer and use it in GitHub Desktop.
Observable
.fromEvent(button, 'click' )
.debounceTime( 500 )
.subscribe(event => {
console.log( 'clicked!' )
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment