(obj: any)
| 447 | * instance of HttpResponseMovedPermanently. False otherwise. |
| 448 | */ |
| 449 | export function isHttpResponseMovedPermanently(obj: any): obj is HttpResponseMovedPermanently { |
| 450 | return obj instanceof HttpResponseMovedPermanently || |
| 451 | (typeof obj === 'object' && obj !== null && obj.isHttpResponseMovedPermanently === true); |
| 452 | } |
| 453 | |
| 454 | /** |
| 455 | * Represent an HTTP response with the status 302 - FOUND. |
no outgoing calls
no test coverage detected