Skip to content

Instantly share code, notes, and snippets.

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