rxjs-compat
Version:
[](https://circleci.com/gh/ReactiveX/rxjs/tree/6.x) [](http://badge.fury.io/js/%40reactivex%2Frxjs) [![Join the chat
7 lines • 306 B
JavaScript
import { asyncScheduler } from 'rxjs';
import { debounceTime as higherOrder } from 'rxjs/operators';
export function debounceTime(dueTime, scheduler) {
if (scheduler === void 0) { scheduler = asyncScheduler; }
return higherOrder(dueTime, scheduler)(this);
}
//# sourceMappingURL=debounceTime.js.map