Front end of the Slack clone application.

timestamp.js 470B

123456789101112131415
  1. "use strict";
  2. var async_1 = require('../scheduler/async');
  3. var timestamp_1 = require('../operators/timestamp');
  4. /**
  5. * @param scheduler
  6. * @return {Observable<Timestamp<any>>|WebSocketSubject<T>|Observable<T>}
  7. * @method timestamp
  8. * @owner Observable
  9. */
  10. function timestamp(scheduler) {
  11. if (scheduler === void 0) { scheduler = async_1.async; }
  12. return timestamp_1.timestamp(scheduler)(this);
  13. }
  14. exports.timestamp = timestamp;
  15. //# sourceMappingURL=timestamp.js.map