Created
January 25, 2021 14:10
-
-
Save blakazulu/3a0159cda09bfc44ffe464883229089d to your computer and use it in GitHub Desktop.
Angular CMS
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
import {Subject} from 'rxjs'; | |
export class RxjsHelper { | |
static destroySubject(subject$: Subject<any>): void { | |
if (subject$) { | |
subject$.next(); | |
subject$.complete(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment