123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- "use strict";
- var throttle_1 = require('../operators/throttle');
- function throttle(durationSelector, config) {
- if (config === void 0) { config = throttle_1.defaultThrottleConfig; }
- return throttle_1.throttle(durationSelector, config)(this);
- }
- exports.throttle = throttle;
|