Skip to content

Instantly share code, notes, and snippets.

@cartant
Last active May 21, 2018 05:11
Show Gist options
  • Select an option

  • Save cartant/4ee8890f66bef0e5ef791e1cd9ef647d to your computer and use it in GitHub Desktop.

Select an option

Save cartant/4ee8890f66bef0e5ef791e1cd9ef647d to your computer and use it in GitHub Desktop.
import { pipe } from "rxjs";
import { debounceTime, distinctUntilChanged } from "rxjs/operators";
export 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