Created
January 9, 2019 04:39
-
-
Save caroso1222/016d4fddaebedf928b23491d1a145003 to your computer and use it in GitHub Desktop.
rxjs-log-step-2.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export function log() { | |
return function logFn<T>(source: Observable<T>) { | |
const output = new Observable<T>(observer => {}); | |
return output; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment