xxxxxxxxxx
new MyPipe().transform(myData, arg1, arg2, arg3)
xxxxxxxxxx
{{ person.desc | descPipe: 'arg1' : 'arg2' : 'arg3' }}
transform(desc: any, id: any, name: any, website: any): any {
return desc + ': ' + 'Your ID is ' + id + '. Your Name is ' + name + '. Your Website is ' + website + '.';
}