I\'m currently switching to the new HttpClient of Angular 4.3. One advantage is that I can specify a type info on the GET method and that the returned JSON is parsed into th
You still can, but you need to import the map()-operator from rxjs like this:
map()
import 'rxjs/add/operator/map';
Then you can, just as Diego pointed out, use the map like this:
map
return this.http.get(url) .map(x => { x.published = new Date(String(x.published)); return x; }) [...]