项目原始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.

123456789101112
  1. import { zip as higherOrder } from '../operators/zip';
  2. /* tslint:enable:max-line-length */
  3. /**
  4. * @param observables
  5. * @return {Observable<R>}
  6. * @method zip
  7. * @owner Observable
  8. */
  9. export function zipProto(...observables) {
  10. return higherOrder(...observables)(this);
  11. }
  12. //# sourceMappingURL=zip.js.map