mattupstate/angular-pipeline-example

View on GitHub
src/app/home/home.component.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Component } from '@angular/core';

@Component({
  selector: 'app-home',
  templateUrl: './home.component.html',
  styleUrls: ['./home.component.css']
})
export class HomeComponent {

  constructor() { }

  throwError() {
    throw Error('Error simulation');
  }
}