You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 16, 2021. It is now read-only.
I am working on an app which is transpiled to es5 and there is something that I don't understand (sorry in advance if my question is stupid).
I created my own interceptor and I added to the the interceptor service :
export class TimeoutInterceptor implements Interceptor {
private _timeout: number = 1;
public interceptBefore(request: InterceptedRequest): Observable<InterceptedRequest> {
return Observable.of<InterceptedRequest>(request)
.timeout(this._timeout);
}
public interceptAfter(response: InterceptedResponse): InterceptedResponse {
return response;
}
}
But in the interceptor-service.js file at the line 176 there is a test if (!bf.interceptBefore)
and it returns undefined.
When I debug I see my interceptor in the list and I see in the prototype of it the correct function. If I debug bf.prototype.interceptBefore the function exists :