Last active
April 3, 2019 11:21
-
-
Save AbuzerAsif/940c965587e70cd0e28a803505aeb9e7 to your computer and use it in GitHub Desktop.
Revisions
-
AbuzerAsif revised this gist
Apr 3, 2019 . No changes.There are no files selected for viewing
-
AbuzerAsif created this gist
Apr 3, 2019 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ import { Pipe, PipeTransform } from '@angular/core'; @Pipe({ name: 'myCustomPipe' }) export class MyCustomPipe implements PipeTransform { transform(value: any, args?: any): any { return value; } }