Guest User

Untitled

a guest
May 25th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. import { pipe } from "rxjs";
  2. import { debounceTime, distinctUntilChanged } from "rxjs/operators";
  3.  
  4. export const debounceInput = pipe(
  5. debounceTime<string>(400),
  6. distinctUntilChanged()
  7. );
Add Comment
Please, Sign In to add comment