Skip to content

Instantly share code, notes, and snippets.

@caroso1222
Created January 9, 2019 04:39
rxjs-log-step-2.ts
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