biofriction-wp-theme/node_modules/rxjs/_esm2015/operator/zip.js

12 lines
306 B
JavaScript
Raw Normal View History

2021-10-26 14:18:09 +02:00
import { zip as higherOrder } from '../operators/zip';
/* tslint:enable:max-line-length */
/**
* @param observables
* @return {Observable<R>}
* @method zip
* @owner Observable
*/
export function zipProto(...observables) {
return higherOrder(...observables)(this);
}
//# sourceMappingURL=zip.js.map