项目原始demo,不改动
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 

11 lines
319 B

  1. import { publishLast as higherOrder } from '../operators/publishLast';
  2. /**
  3. * @return {ConnectableObservable<T>}
  4. * @method publishLast
  5. * @owner Observable
  6. */
  7. export function publishLast() {
  8. //TODO(benlesh): correct type-flow through here.
  9. return higherOrder()(this);
  10. }
  11. //# sourceMappingURL=publishLast.js.map