Skip to content

Instantly share code, notes, and snippets.

@Calvin-Huang
Last active September 9, 2017 19:48
Show Gist options
  • Save Calvin-Huang/2facd70892688c1e19931ebac7254e0a to your computer and use it in GitHub Desktop.
Save Calvin-Huang/2facd70892688c1e19931ebac7254e0a to your computer and use it in GitHub Desktop.
// Throttling
function* handleInput(input) {
// ...
}
function* watchInput() {
yield throttle(500, 'INPUT_CHANGED', handleInput)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment