how to pass arguments to html pipe in angular code example
Example 1: command to create custom pipe in angular 6
ng generate pipe personName
Example 2: angular pipe multiple arguments
new MyPipe().transform(myData, arg1, arg2, arg3)
ng generate pipe personName
new MyPipe().transform(myData, arg1, arg2, arg3)