debounce.js 189 B

12345
  1. import { debounce as higherOrder } from 'rxjs/operators';
  2. export function debounce(durationSelector) {
  3. return higherOrder(durationSelector)(this);
  4. }
  5. //# sourceMappingURL=debounce.js.map