Angular Custom Pipes and How it works https://embarkcode.com/angular-custom-pipes/
import { Pipe, PipeTransform } from '@angular/core'; | |
@Pipe({ | |
name: 'myCustomPipe' | |
}) | |
export class MyCustomPipe implements PipeTransform { | |
transform(value: any, args?: any): any { | |
return value; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment