Created
June 4, 2022 11:59
-
-
Save lorenzojkrl/14206e987f8129cdbbf9b45d9b17d141 to your computer and use it in GitHub Desktop.
Angular's autogenerated pipe file
This file contains hidden or 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 { Pipe, PipeTransform } from '@angular/core'; | |
@Pipe({ | |
name: 'filter' | |
}) | |
export class FilterPipe implements PipeTransform { | |
transform(value: any, args?: any): any { | |
return null; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment