timestamp.js 234 B

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