Last active
May 12, 2018 02:39
-
-
Save cartant/5f856608085f5ecc79634e13af74d17b 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
| import { pipe } from "rxjs"; | |
| import { debounceTime, distinctUntilChanged } from "rxjs/operators"; | |
| const debounceInput = pipe( | |
| debounceTime<string>(400), | |
| distinctUntilChanged() | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment