Debounce - luftsport/nlf-client GitHub Wiki
Import
import { debounce } from 'ts-debounce';
Class member
debouncedUpdate = debounce(this.somefunction, 1000);
Usage
<nlf-selector (change)="debouncedUpdate()"></nlf-selector>
import { debounce } from 'ts-debounce';
debouncedUpdate = debounce(this.somefunction, 1000);
<nlf-selector (change)="debouncedUpdate()"></nlf-selector>