timestamp.js 279 B

1234567
  1. import { asyncScheduler } from 'rxjs';
  2. import { timestamp as higherOrder } from 'rxjs/operators';
  3. export function timestamp(scheduler) {
  4. if (scheduler === void 0) { scheduler = asyncScheduler; }
  5. return higherOrder(scheduler)(this);
  6. }
  7. //# sourceMappingURL=timestamp.js.map