a zip code crypto-currency system good for red ONLY

zip.js 306B

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