Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
StreamOps.prototype.combine = function(f, ...v) {
return Observable.combineLatest(v, f)
}
StreamOps.prototype.filter = function <a>(f: (a: A) => boolean, fa: Observable</a><a>): Observable</a><a> {</a>
StreamOps.prototype.combine = function(f, ...v) {
return RxStream.combineLatest(v, f)
}
StreamOps.prototype.filter = function <a>(f: (a: A) => boolean, fa: RxStream</a><a>): RxStream</a><a> {</a>