Angular Pipes
What is a Pipe?
A pipe is a function that transforms an input value into an output value before rendering it in the template.
The class requires to implement the PipeTransform interface.
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
...
blog.mihaioltean.com3 min read