Created
September 9, 2017 19:42
-
-
Save Calvin-Huang/74231679fb19e60dbdce01b7dd2d4f79 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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