I want to call a pipe with in a service.
just like
export class MyService{
constructor(private http: Http){}
getValues(){
this.http.get(baseUrl).pipe(//pipename) //I want to menton my custom pipe
}
}
After completion of pipe I want to return that observables to component. Is it possible ?