Ive upgraded my angular application from version 5 to 6 and im getting this error from the following code.
const request = this.evidenceService.get().map((
This solved my problem here is the code:
import { map } from "rxjs/operators";
**********************************************Example**Below**************************************
getPosts(){ this.http.get('http://jsonplaceholder.typicode.com/posts') .pipe(map(res => res.json())); } }