Skip to content

Instantly share code, notes, and snippets.

View datze's full-sized avatar
💭
Doing stuff

Datze datze

💭
Doing stuff
View GitHub Profile
@datze
datze / AngularDateHttpInterceptor.ts
Last active July 9, 2021 08:14 — forked from reinzwei/AngularDateHttpInterceptor.ts
An Angular 6+ interceptor to parse dates from server response.
import {
HttpRequest,
HttpHandler,
HttpEvent,
HttpInterceptor,
HttpErrorResponse,
HttpResponse
} from '@angular/common/http';
import { Observable } from 'rxjs';
import { tap } from 'rxjs/operators';