auditTime.js 254 B

123456
  1. import { asyncScheduler } from 'rxjs';
  2. import { auditTime as higherOrder } from 'rxjs/operators';
  3. export function auditTime(duration, scheduler = asyncScheduler) {
  4. return higherOrder(duration, scheduler)(this);
  5. }
  6. //# sourceMappingURL=auditTime.js.map