Skip to content

Instantly share code, notes, and snippets.

@whisher
Created May 24, 2019 10:38
Show Gist options
  • Save whisher/5c819e1c2486a5b7178453b7608654a3 to your computer and use it in GitHub Desktop.
Save whisher/5c819e1c2486a5b7178453b7608654a3 to your computer and use it in GitHub Desktop.
export abstract class BaseComponent implements OnDestroy {
private subscriptions: Array<Subscription> = [];
ngOnDestroy() {
this.subscriptions.forEach(sub => sub.unsubscribe());
}
public subscription(subscription: Subscription) {
this.subscriptions.push(subscription);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment