ix
Version: 
The Interactive Extensions for JavaScript
12 lines (10 loc) • 308 B
JavaScript
import { AsyncIterableX } from '../../asynciterable/asynciterablex';
import { debounce } from '../../asynciterable/debounce';
/**
 * @ignore
 */
export function debounceProto(time) {
    return debounce(this, time);
}
AsyncIterableX.prototype.debounce = debounceProto;
//# sourceMappingURL=debounce.mjs.map