Skip to content

Instantly share code, notes, and snippets.

@Calvin-Huang
Created September 9, 2017 19:43
Show Gist options
  • Save Calvin-Huang/5323cc0ce20339a67ac58851b37f0354 to your computer and use it in GitHub Desktop.
Save Calvin-Huang/5323cc0ce20339a67ac58851b37f0354 to your computer and use it in GitHub Desktop.
// Deboucing
const inputEpic = (action$) =>
action$.ofType('INPUT_CHANGED')
.debounceTime(500)
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment